/* === NOTIFICATIONS === */
.notification-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    width: 100%;
}

.notification {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(20, 20, 20, 0.95);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    transform: translateX(450px);
    opacity: 0;
    transition: all 0.3s ease;
    position: relative;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-icon svg {
    width: 24px;
    height: 24px;
}

.notification-message {
    flex: 1;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-primary);
}

.notification-close {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.notification-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

/* Типы уведомлений */
.notification-success {
    border-color: rgba(34, 197, 94, 0.3);
}

.notification-success .notification-icon {
    background: rgba(34, 197, 94, 0.2);
}

.notification-success .notification-icon svg {
    stroke: #22c55e;
}

.notification-error {
    border-color: rgba(220, 38, 38, 0.3);
}

.notification-error .notification-icon {
    background: rgba(220, 38, 38, 0.2);
}

.notification-error .notification-icon svg {
    stroke: #dc2626;
}

.notification-warning {
    border-color: rgba(251, 191, 36, 0.3);
}

.notification-warning .notification-icon {
    background: rgba(251, 191, 36, 0.2);
}

.notification-warning .notification-icon svg {
    stroke: #fbbf24;
}

.notification-info {
    border-color: rgba(59, 130, 246, 0.3);
}

.notification-info .notification-icon {
    background: rgba(59, 130, 246, 0.2);
}

.notification-info .notification-icon svg {
    stroke: #3b82f6;
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
    .notification-container {
        top: 70px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .notification {
        padding: 0.9rem 1rem;
    }
    
    .notification-message {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .notification-container {
        top: 65px;
    }
}

