.notif-bell-wrapper {
    position: relative;
    display: inline-block;
}

/* Oculta tudo até o JS ativar */
.notif-bell-wrapper:not(.ready) .notif-icon {
    display: none !important;
}

.notif-bell {
    width: 42px;
    height: 42px;
    cursor: pointer;
}

.notif-icon-wrapper {
    width: 42px;
    height: 42px;
    background: #50F2F2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notif-icon {
    display: none !important;
    width: 17px;
    height: auto;
}

.notif-icon.active {
    display: block !important;
}

/* PAINEL */
.notif-panel {
    position: absolute;
    top: 50px;
    right: 0;
    width: 260px;
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.15);
    opacity: 0;
    transform: translateY(-5px);
    transition: 0.25s ease;
    pointer-events: none;
    z-index: 9999;
}

.notif-panel.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
