.notif-bell-btn {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    color: inherit;
    display: flex;
    align-items: center;
}

.notif-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #dc3545;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    display: none;
}

.notif-badge.has-unread {
    display: flex;
}

.notif-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 320px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    z-index: 1050;
    display: none;
    overflow: hidden;
}

.notif-dropdown.open {
    display: block;
}

.notif-dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid #f3f4f6;
    font-weight: 600;
    font-size: 14px;
}

.notif-mark-all {
    font-size: 12px;
    font-weight: 400;
    color: #6b7280;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.notif-mark-all:hover { color: #111; }

.notif-list { max-height: 360px; overflow-y: auto; }

.notif-item {
    padding: 12px 16px;
    border-bottom: 1px solid #f9fafb;
    cursor: pointer;
    transition: background .1s;
}

.notif-item:hover { background: #f9fafb; }
.notif-item.unread { background: #eff6ff; }
.notif-item.unread:hover { background: #dbeafe; }

.notif-item-label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 2px;
}

.notif-item-time {
    font-size: 11px;
    color: #9ca3af;
}

.notif-empty {
    padding: 24px 16px;
    text-align: center;
    color: #9ca3af;
    font-size: 13px;
}
