/* Premium Toast Notifications */
.notification-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.notification {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 320px;
    max-width: 420px;
    padding: 16px 20px;
    background: rgba(20, 20, 30, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: all;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification.hide {
    opacity: 0;
    transform: translateX(400px) scale(0.9);
}

.notification-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-icon svg {
    width: 100%;
    height: 100%;
}

.notification-content {
    flex: 1;
    min-width: 0;
}

.notification-message {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    word-wrap: break-word;
}

.notification-close {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.2s;
}

.notification-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Success Notification */
.notification-success {
    border-left: 3px solid #10b981;
}

.notification-success .notification-icon {
    color: #10b981;
}

/* Error Notification */
.notification-error {
    border-left: 3px solid #ef4444;
}

.notification-error .notification-icon {
    color: #ef4444;
}

/* Warning Notification */
.notification-warning {
    border-left: 3px solid #f59e0b;
}

.notification-warning .notification-icon {
    color: #f59e0b;
}

/* Info Notification */
.notification-info {
    border-left: 3px solid #3b82f6;
}

.notification-info .notification-icon {
    color: #3b82f6;
}

/* Loading Notification */
.notification-loading {
    border-left: 3px solid #8b5cf6;
}

.notification-loading .notification-icon {
    color: #8b5cf6;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.notification-icon .spin {
    animation: spin 1s linear infinite;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .notification-container {
        top: 60px;
        right: 12px;
        left: 12px;
    }

    .notification {
        min-width: auto;
        max-width: none;
        padding: 14px 16px;
    }

    .notification-message {
        font-size: 13px;
    }
}