/* ==========================================================================
   GLOBAL TOAST SYSTEM
   ========================================================================== */
#toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none; /* Let clicks pass through container */
}

.custom-toast {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-sm, 12px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 300px;
    max-width: 400px;
    border-left: 4px solid var(--primary, #296c72);
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: auto; /* Re-enable clicks on toast */
}

.custom-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.custom-toast.toast-success {
    border-left-color: #10B981;
}
.custom-toast.toast-success .toast-icon {
    color: #10B981;
    background: rgba(16, 185, 129, 0.1);
}

.custom-toast.toast-error {
    border-left-color: #EF4444;
}
.custom-toast.toast-error .toast-icon {
    color: #EF4444;
    background: rgba(239, 68, 68, 0.1);
}

.toast-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary, #111827);
    margin-bottom: 2px;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

.toast-message {
    font-size: 0.85rem;
    color: var(--text-secondary, #6B7280);
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

.toast-close {
    background: none;
    border: none;
    color: #9CA3AF;
    cursor: pointer;
    font-size: 1rem;
    transition: color 0.2s;
    padding: 4px;
}

.toast-close:hover {
    color: var(--text-primary, #111827);
}
