/*
:root {
    --primary-color: #0056b3;
    --secondary-color: #f4f7f6;
    --text-color: #333;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--secondary-color);
    display: flex;
    justify-content: center;
    padding: 20px;
}
*/
.booking-container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 600px;
}

h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 25px;
}

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

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 5px;
    font-weight: bold;
    color: var(--text-color);
    font-size: 0.9em;
}

input, select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
/*
.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background 0.3s;
}
*/
.submit-btn:hover {
    background-color: #004494;
}

/* Responsividade para telemóveis */
@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 10px;
    }
}