/* ================================================
   TOAST NOTIFICATIONS
   Universal notification styles for all pages
   ================================================ */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 400px;
}

.toast-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.toast-success .toast-icon {
    background: rgba(0, 255, 136, 0.15);
    color: #00ff88;
    border: 2px solid rgba(0, 255, 136, 0.3);
}

.toast-error .toast-icon {
    background: rgba(255, 68, 68, 0.15);
    color: #ff4444;
    border: 2px solid rgba(255, 68, 68, 0.3);
}

.toast-info .toast-icon {
    background: rgba(0, 136, 255, 0.15);
    color: #0088ff;
    border: 2px solid rgba(0, 136, 255, 0.3);
}

.toast-message {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.4;
}

.toast-success {
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.toast-error {
    border: 1px solid rgba(255, 68, 68, 0.2);
}

.toast-info {
    border: 1px solid rgba(0, 136, 255, 0.2);
}

/* Mobile responsive */
@media (max-width: 640px) {
    .toast-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}
