.bhuguard-notif-bell {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.bhuguard-notif-bell__button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 9999px;
    border: 0;
    background: transparent;
    color: #0b2e1f;
    cursor: pointer;
}

.bhuguard-notif-bell__button:hover {
    background: rgba(11, 46, 31, 0.08);
}
.bhuguard-notif-bell__button.has-unread {
    animation: bhuguardNotifPulse 1.4s ease-in-out infinite;
}

.bhuguard-notif-bell__icon {
    width: 1.35rem;
    height: 1.35rem;
}

.bhuguard-notif-bell__badge {
    position: absolute;
    top: -0.15rem;
    right: -0.2rem;
    min-width: 1.15rem;
    height: 1.15rem;
    padding: 0 0.28rem;
    border-radius: 9999px;
    background: #dc2626;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    line-height: 1.15rem;
    text-align: center;
    box-shadow: 0 0 0 2px #fff;
}

@keyframes bhuguardNotifPulse {
    0% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4); }
    70% { box-shadow: 0 0 0 8px rgba(220, 38, 38, 0); }
    100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}

.bhuguard-notif-bell__dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    z-index: 60;
    width: min(24rem, calc(100vw - 2rem));
    overflow: hidden;
    border-radius: 0.9rem;
    border: 1px solid rgba(11, 46, 31, 0.12);
    background: #fff;
    box-shadow: 0 18px 40px rgba(11, 46, 31, 0.16);
}

.bhuguard-notif-bell__header,
.bhuguard-notif-bell__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    background: #f7faf7;
}

.bhuguard-notif-bell__header strong {
    display: block;
    color: #0b2e1f;
    font-size: 0.95rem;
}

.bhuguard-notif-bell__header span {
    color: #5b6b61;
    font-size: 0.75rem;
}

.bhuguard-notif-bell__link {
    border: 0;
    background: transparent;
    color: #2f6b3a;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
}

.bhuguard-notif-bell__link:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.bhuguard-notif-bell__list {
    max-height: 22rem;
    overflow-y: auto;
}

.bhuguard-notif-bell__item {
    display: block;
    width: 100%;
    padding: 0.85rem 1rem;
    border: 0;
    border-bottom: 1px solid rgba(11, 46, 31, 0.08);
    background: #fff;
    text-align: left;
    cursor: pointer;
}

.bhuguard-notif-bell__item:hover {
    background: #f4f8f4;
}

.bhuguard-notif-bell__item.is-unread {
    background: #eef8ea;
}

.bhuguard-notif-bell__item-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.bhuguard-notif-bell__item-top strong {
    color: #0b2e1f;
    font-size: 0.88rem;
}

.bhuguard-notif-bell__dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background: #dc2626;
    flex-shrink: 0;
}

.bhuguard-notif-bell__item p {
    margin: 0.35rem 0 0;
    color: #3f4940;
    font-size: 0.8rem;
    line-height: 1.35;
}

.bhuguard-notif-bell__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 0.75rem;
    margin-top: 0.45rem;
    color: #6f7a70;
    font-size: 0.72rem;
}

.bhuguard-notif-bell__empty {
    padding: 1.5rem 1rem;
    color: #6f7a70;
    font-size: 0.875rem;
    text-align: center;
}
