.notificacoes-widget {
    position: relative;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
}

.sino-wrapper {
    position: relative;
    cursor: pointer;
}

.sino-icon {
    font-size: 24px;
    color: white;
}

.notificacao-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: red;
    color: white;
    font-size: 12px;
    border-radius: 50%;
    padding: 2px 6px;
    line-height: 1;
}
.notificacoes-dropdown {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    position: absolute;
    top: 35px;
    right: 0;
    background: #222;
    border-radius: 8px;
    min-width: 260px;
    max-width: 320px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    z-index: 9999;
    padding: 10px;
    pointer-events: none;
}

.sino-wrapper:hover .notificacoes-dropdown,
.sino-wrapper:focus-within .notificacoes-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}


.notificacoes-scroll {
    max-height: 280px;
    overflow-y: auto;
    scrollbar-width: thin;
}

.notificacoes-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.notificacoes-dropdown li {
    color: white;
    padding: 10px;
    border-bottom: 1px solid #333;
}

.titulo-notificacao {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 4px;
    color: #fff;
}

.mensagem-notificacao {
    font-size: 13px;
    color: #ccc;
}

.sem-notificacoes {
    color: #ccc;
    padding: 6px 0;
    text-align: center;
}
.autor-notificacao {
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
    font-style: italic;
}
