/* Стили для иконки уведомлений */
.notifications-icon {
    position: absolute;
    top: 16px;
    right: 70px; /* Positioned to the left of the avatar button */
    cursor: pointer;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    z-index: 1500; /* выше, чем у модалки */
}

.notifications-icon:hover {
    color: #00d4ff;
    transform: scale(1.1);
    background: rgba(0, 212, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.notifications-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4444; /* Меняем цвет с #ff4444 на #ff4444 (уже красный) */
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Стили для модального окна уведомлений */
.notifications-modal {
    position: absolute !important; /* привязываем к документу, уходит при скролле */
    top: 0; /* устанавливается скриптом */
    left: 0; /* устанавливается скриптом */
    display: none;
    z-index: 1000; /* поверх avatar-menu */
    width: max-content;
    max-width: 92vw; /* не выходим за экран по ширине */
    max-height: 80vh; /* ограничиваем высоту */
    overflow: visible;
}

/* Панель содержимого модалки (карточка) */
.notifications-content {
    background: rgba(11, 18, 32, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.45), inset 0 0 0 1px rgba(255,255,255,0.02);
    padding: 14px 16px;
    min-width: 360px;
    max-height: 80vh; /* чтобы внутренний контент не выходил */
    overflow: hidden;
}

.notifications-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    margin-bottom: 12px;
}

.notifications-header h3 {
    margin: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.notifications-count {
    background: #ff4444; /* Меняем цвет с синего на красный */
    color: white; /* Меняем цвет текста на белый для лучшей читаемости */
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    min-width: 20px;
    text-align: center;
}

.clear-all-notifications {
    background: none;
    border: none;
    color: #888;
    font-size: 14px;
    cursor: pointer;
    padding: 4px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.clear-all-notifications:hover {
    background: rgba(255,255,255,0.1);
    color: #ff4444;
}

.close-notifications {
    background: none;
    border: none;
    color: #888;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-notifications:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.notifications-list {
    max-height: calc(80vh - 70px);
    overflow: auto;
}

.notification-item {
    padding: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-radius: 8px;
    margin-bottom: 4px;
    position: relative; /* Для позиционирования крестика */
}

.notification-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    color: #888;
    font-size: 16px;
    cursor: pointer;
    padding: 2px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 0; /* Скрыт по умолчанию */
}

.notification-item:hover .notification-close {
    opacity: 1; /* Показываем при наведении */
}

.notification-close:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.notification-item:hover {
    background: rgba(255,255,255,0.04);
}

.notification-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.notification-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
}

.notification-icon.comment {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.notification-icon.admin {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.notification-icon.reply {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.notification-content {
    flex: 1;
    min-width: 0;
}

.notification-title {
    color: #fff;
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 13px;
    line-height: 1.3;
}

.notification-text {
    color: #ccc;
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 4px;
}

.notification-meta {
    color: #888;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.notification-time {
    color: #666;
}

.notification-unread {
    background: #00d4ff;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.notifications-empty {
    padding: 20px;
    text-align: center;
    color: #888;
}

.notifications-empty p {
    margin: 0;
    font-size: 14px;
}

/* Скроллбар для списка уведомлений */
.notifications-list::-webkit-scrollbar {
    width: 6px;
}

.notifications-list::-webkit-scrollbar-track {
    background: transparent;
}

.notifications-list::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.2);
    border-radius: 3px;
}

.notifications-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.3);
}

/* Адаптивность */
@media (max-width: 600px) {
    .notifications-modal {
        min-width: 320px;
        max-width: 90vw;
    }
    
    .notification-item {
        padding: 10px;
    }
    
    .notifications-header {
        padding: 0 0 10px 0;
    }
    
    .notifications-icon {
        right: 60px; /* Adjust for smaller screens */
    }
}
