#room-reservation-form {
    max-width: 600px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.form-row {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

label {
    font-weight: bold;
    margin-bottom: 5px;
}

input, select, button {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.terms-row {
    display: flex;
    align-items: center;
}

.submit-btn {
    background-color: #0073aa;
    color: white;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

.submit-btn:hover {
    background-color: #005f8d;
}

@media (max-width: 768px) {
    #room-reservation-form {
        padding: 10px;
    }

    .form-row {
        flex-direction: column;
    }

    .terms-row {
        flex-direction: column;
        align-items: flex-start;
    }
}
