.notification-popup {
    bottom: 105%; /* Позиционируем над аватаром */
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: 12px;
    box-shadow: var(--shadow-md);
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.4;
    z-index: 50;
    pointer-events: all;
}

/* "Хвостик"-стрелка для всплывающего окна */
.notification-popup::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: var(--bg-secondary) transparent transparent transparent;
}

.notification-popup-content {
    margin-right: 20px; /* Место для кнопки закрытия */
}

.notification-popup-close {
    position: absolute;
    top: 4px;
    right: 8px;
    color: var(--text-tertiary);
    font-size: 20px;
    line-height: 1;
    border: none;
    background: none;
    cursor: pointer;
}
.notification-popup-close:hover {
    color: var(--text-primary);
}
