/* Toast Notification Container */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none; /* Allow clicks to pass through container */
}

/* Individual Toast Cards */
.toast-item {
    pointer-events: auto; /* Re-enable clicks on the toast itself */
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px; /* Reduced vertical padding */
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 250px;
    max-width: 350px;
    animation: slideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transition: all 0.3s ease;
    border-left: 4px solid #333;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.toast-item.hide {
    opacity: 0;
    transform: translateX(100%);
}

/* Message Text */
.toast-message {
    color: #1e293b;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    padding: 0;
}

/* Toast Variants (Base Colors) */
.toast-success { border-left-color: #22c55e; }
.toast-error   { border-left-color: #ef4444; }
.toast-info    { border-left-color: #3b82f6; }
.toast-warning { border-left-color: #f59e0b; }

/* Optional Icons (using Lucide classes if available, or just CSS emojis/shapes) */
.toast-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
