.reservation-section {
    padding: 40px 40px 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reservation-container {
    width: 100%;
    max-width: 450px; /* Estil targeta mòbil */
}

.calendar-widget {
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    gap: 10px 5px;
}

.day-name {
    font-weight: bold;
    margin-bottom: 15px;
}

.day {
    padding: 10px 0;
    cursor: pointer;
}

/* Formularis */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.custom-select {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    border: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='grey' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
}

.btn-reserve {
    width: 100%;
    padding: 18px;
    border-radius: 8px;
    border: none;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
}