/* --- Веб-уведомления --- */
.notification-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 320px;
}

.notification {
    background: rgba(15, 32, 39, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
    opacity: 1;
    transition: opacity 0.3s ease;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.notification-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.notification-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

.notification-content {
    flex: 1;
    font-size: 0.95rem;
}

.notification-title {
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: #e0e0e0;
}

.notification-message {
    color: #a0d2ff;
    font-size: 0.85rem;
}

.notification-close {
    background: none;
    border: none;
    color: #80c0ff;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.notification-close:hover {
    opacity: 1;
}

/* Типы уведомлений */
.notification-info { border-left: 4px solid #4facfe; }
.notification-success { border-left: 4px solid #4fffaa; }
.notification-error { border-left: 4px solid #ff6b6b; }
.notification-warning { border-left: 4px solid #ffd700; }