/* Notification Styles & Bell Widget */

.top-bell-container {
    position: fixed;
    top: 14px;
    right: 16px;
    z-index: 9990;
}

.notif-bell-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(18, 22, 34, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-main, #f3f4f6);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
    transition: all 0.25s ease;
    position: relative;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

.notif-bell-btn:hover, .notif-bell-btn:active {
    background: rgba(30, 37, 56, 0.95);
    transform: scale(1.05);
    border-color: var(--primary, #3b82f6);
    color: var(--primary, #3b82f6);
}

.notif-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    box-shadow: 0 2px 6px rgba(239, 68, 68, 0.6);
    animation: pulseBadge 2s infinite;
}

@media (max-width: 768px) {
    .top-bell-container {
        top: 12px;
        right: 12px;
    }
    
    .notif-bell-btn {
        width: 34px;
        height: 34px;
        font-size: 0.88rem;
    }
    
    .notif-badge {
        top: -3px;
        right: -3px;
        font-size: 0.62rem;
        min-width: 15px;
        height: 15px;
    }
}

@keyframes pulseBadge {
    0% { transform: scale(1); }
    50% { transform: scale(1.12); }
    100% { transform: scale(1); }
}

/* Notification Item in Center */
.notif-center-item {
    padding: 0.85rem 0.95rem;
    border-radius: var(--radius-md, 10px);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 0.65rem;
    transition: all 0.2s ease;
    position: relative;
}

.notif-center-item.unread {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.3);
}

.notif-center-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.notification-item-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-delete-btn {
    background: none;
    border: none;
    color: var(--danger, #ef4444);
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    opacity: 0.6;
    transition: all 0.2s ease;
}

.notification-delete-btn:hover {
    opacity: 1;
    background: rgba(239, 68, 68, 0.15);
}

.notification-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}
