/* =========================================
   NOTIFICATIONS SYSTEM
   ========================================= */
.notifications-container {
    position: fixed;
    top: 70px;
    right: 20px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
}

.notification {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: linear-gradient(135deg,
            rgba(26, 26, 46, 0.98) 0%,
            rgba(22, 33, 62, 0.98) 100%);
    backdrop-filter: blur(30px);
    border-radius: 10px;
    border: 1px solid rgba(0, 221, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateX(420px);
    animation: slideInNotification 0.5s ease-out forwards;
}

.notification.success {
    border-color: rgba(0, 255, 127, 0.4);
}

.notification.warning {
    border-color: rgba(255, 165, 0, 0.4);
}

.notification.error {
    border-color: rgba(255, 68, 68, 0.4);
}

.notification.info {
    border-color: rgba(0, 221, 255, 0.4);
}

@keyframes slideInNotification {
    to {
        transform: translateX(0);
}
}

/* ========================================= */
