/* Dropdown container */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    width: 92%;
    background: white;
    overflow-y: auto;
    border: 1px solid #ccc;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-radius: 5px;
}

/* Cada item do dropdown */
.dropdown-item {
    display: block;
    padding: 5px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.dropdown-item:hover {
    background: #f0f0f0;
}

/* Estiliza o texto "Nenhuma postagem encontrada" */
.no-results {
    padding: 10px;
    color: #777;
    text-align: center;
}
