.booking-container * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.booking-container {
    max-width: 100% !important;
    margin: 0 auto !important;
    display: flex !important;
    gap: 0 !important;
    background-color: white !important;
    border-radius: 4px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    overflow: hidden !important;
    flex-wrap: wrap !important;
    font-family: Roboto, sans-serif !important;
}

.booking-field {
    flex: 1 !important;
    min-width: 130px !important;
    padding: 16px 12px !important;
    border-right: 1px solid #e0e0e0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    cursor: pointer !important;
    position: relative !important;
}

.booking-field:last-of-type {
    border-right: none;
}

.booking-field.date-field input {
    position: absolute !important;
    opacity: 0 !important;
    width: 100% !important;
    height: 100% !important;
    cursor: pointer !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 1 !important;
}

.booking-label {
    font-family: Roboto !important;
    font-size: 13px !important;
    letter-spacing: 0.8px !important;
    text-align: center !important;
    text-transform: uppercase !important;
    color: rgb(95, 95, 95) !important;
    margin-bottom: 8px !important;
    font-weight: 400 !important;
    font-style: normal !important;
    font-kerning: auto !important;
    font-optical-sizing: auto !important;
    font-variant: normal !important;
    text-decoration: none !important;
    text-size-adjust: 100% !important;
    line-height: normal !important;
}

.qty-display {
    text-size-adjust: 100% !important;
    font-family: Roboto !important;
    font-size: 40px !important;
    font-weight: 400 !important;
    letter-spacing: 3px !important;
    line-height: 40px !important;
    color: rgb(28, 28, 28) !important;
    min-width: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.quantity-controls {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    margin-top: 4px !important;
}

.booking-value {
    text-size-adjust: 100% !important;
    font-family: Roboto !important;
    font-size: 40px !important;
    font-weight: 400 !important;
    letter-spacing: 3px !important;
    line-height: 1 !important;
    color: rgb(28, 28, 28) !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
    gap: 6px !important;
}

.qty-arrows {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    align-items: center !important;
    justify-content: center !important;
}

.qty-btn {
    background-color: transparent !important;
    color: #999 !important;
    border: none !important;
    width: 20px !important;
    height: 20px !important;
    cursor: pointer !important;
    font-size: 14px !important;
    font-weight: bold !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: color 0.2s ease !important;
    padding: 0 !important;
}

.qty-btn i {
    font-size: 14px !important;
    line-height: 1 !important;
}

.qty-btn:hover:not(:disabled) {
    color: #397285 !important;
}

.qty-btn:disabled {
    color: #ddd !important;
    cursor: not-allowed !important;
}

.booking-value-date {
    font-size: 12px !important;
    font-weight: 400 !important;
    letter-spacing: 0.8px !important;
    line-height: normal !important;
    color: rgb(95, 95, 95) !important;
    margin-left: 6px !important;
}

.button-container {
    background-color: #4890a9 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 1 !important;
    border-left: 1px solid #e0e0e0 !important;
    text-align: center !important;
}

.check-availability-btn {
    background-color: #4890a9 !important;
    color: white !important;
    border: none !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    padding: 16px 12px !important;
    text-align: center !important;
    line-height: 1.3 !important;
    width: 100% !important;
    height: 100% !important;
    transition: background-color 0.3s ease !important;
    box-sizing: border-box !important;
}

.check-availability-btn:hover {
    background-color: #397285 !important;
}

.check-availability-btn:active {
    background-color: #1f3d4f;
}

/* Customização do Flatpickr */
.flatpickr-calendar {
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.flatpickr-months {
    background: #397285;
}

.flatpickr-month {
    color: white;
}

.flatpickr-prev-month,
.flatpickr-next-month {
    color: white;
}

.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
    background: rgba(255, 255, 255, 0.1);
}

.flatpickr-weekdays {
    background: #f5f5f5;
    color: #666;
}

.flatpickr-day {
    color: #333;
}

.flatpickr-day.selected,
.flatpickr-day.startRange {
    background: #397285;
    border-color: #397285;
    color: white;
}

.flatpickr-day.inRange {
    background: rgba(57, 114, 133, 0.1);
}

.flatpickr-day:hover {
    background: #e8f0f4;
}

.flatpickr-day.today {
    border-color: #397285;
}

/* Responsivo */
@media (max-width: 1024px) {
    .booking-container {
        flex-wrap: wrap;
    }
    
    .booking-field {
        flex: 1 1 calc(50% - 1px);
    }
    
    .booking-field:nth-child(2n) {
        border-right: none;
    }
    
    .booking-field:nth-child(n+3) {
        border-top: 1px solid #e0e0e0;
    }
    
    .button-container {
        flex: 1 1 100%;
        border-left: none;
        border-top: 1px solid #e0e0e0;
        min-width: auto;
    }
    
    .booking-value {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .booking-field {
        flex: 1 1 100%;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        padding: 20px;
    }
    
    .booking-field:last-of-type {
        border-bottom: none;
    }
    
    .button-container {
        border-top: 1px solid #e0e0e0;
        border-left: none;
    }
    
    .booking-value {
        font-size: 36px;
    }
    
    .booking-label {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .booking-container {
        border-radius: 2px;
    }
    
    .booking-field {
        padding: 16px;
    }
    
    .booking-value {
        font-size: 28px;
    }
    
    .booking-label {
        font-size: 10px;
        margin-bottom: 8px;
    }
    
    .booking-value-date {
        font-size: 14px;
    }
    
    .check-availability-btn {
        font-size: 12px;
    }
}

/* Responsivo para o calendário em mobile */
@media (max-width: 768px) {
    .flatpickr-calendar {
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 90vw !important;
        max-width: 100% !important;
        z-index: 99999;
    }
}

/* Modal de Alerta Personalizado */
.walsa-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999999;
    animation: fadeIn 0.3s ease;
}

.walsa-modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.walsa-modal {
    background: white;
    border-radius: 12px;
    padding: 30px;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease;
    position: relative;
}

.walsa-modal-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: #fff3cd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.walsa-modal-title {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
    font-family: Roboto, sans-serif;
}

.walsa-modal-message {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 25px;
    font-family: Roboto, sans-serif;
}

.walsa-modal-button {
    background: #4890a9;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s ease;
    font-family: Roboto, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.walsa-modal-button:hover {
    background: #397285;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .walsa-modal {
        padding: 25px 20px;
    }
    
    .walsa-modal-title {
        font-size: 20px;
    }
    
    .walsa-modal-message {
        font-size: 15px;
    }
}