/**
 * Booking Toast Notifications
 * Custom toast notifications for booking modal
 */

.booking-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    min-width: 300px;
    max-width: 500px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

.booking-toast.show {
    transform: translateX(0);
}

.booking-toast-success {
    background: #10b981;
    color: white;
}

.booking-toast-error {
    background: #ef4444;
    color: white;
}

.toast-icon {
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.toast-message {
    flex: 1;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .booking-toast {
        top: 10px;
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .booking-toast.show {
        transform: translateY(0);
    }
}

/* Animation for stacking multiple toasts */
.booking-toast:nth-child(n+2) {
    margin-top: 70px;
}
