/* Booking Notification Toast */
.booking-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.98);
    border-left: 4px solid #00B2E3;
    /* Slightly thinner border */
    padding: 12px 15px;
    /* Reduced padding */
    border-radius: 8px;
    /* Slightly smaller radius */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    /* Reduced gap */
    z-index: 10000;
    transform: translateY(150%) scale(0.95);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-width: 280px;
    /* Reduced max-width (was 340px) */
    font-family: 'DM Sans', sans-serif;
    opacity: 0;
    pointer-events: none;
}

.booking-notification.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.booking-icon-wrapper {
    background: linear-gradient(135deg, #00B2E3, #00233A);
    width: 36px;
    /* Smaller icon container */
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
    font-size: 1rem;
    /* Smaller emoji */
    box-shadow: 0 3px 8px rgba(0, 178, 227, 0.25);
}

.booking-text {
    display: flex;
    flex-direction: column;
}

.booking-title {
    font-weight: 700;
    color: #00233A;
    font-size: 0.7rem;
    /* Smaller title */
    margin: 0 0 2px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-message {
    font-size: 0.8rem;
    /* Smaller message */
    color: #555;
    margin: 0;
    line-height: 1.3;
}

.booking-message strong {
    color: #083552;
    font-weight: 700;
}

/* Desktop sizing for Popup */
@media (min-width: 1024px) {
    .booking-notification {
        max-width: 400px;
        padding: 20px 25px;
        bottom: 40px;
        left: 40px;
        gap: 20px;
        border-left-width: 6px;
    }

    .booking-icon-wrapper {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }

    .booking-title {
        font-size: 1rem;
        margin-bottom: 4px;
    }

    .booking-message {
        font-size: 1.1rem;
    }
}