/* Garante que o container da busca tenha position relative */
.flex-grow-1 {
    position: relative;
}

/* Estilo para as sugestões */
.autocomplete-suggestions {
    border-radius: 0 0 4px 4px !important;
    border-top: none !important;
    margin-top: -1px !important;
}

.autocomplete-suggestions .list-group-item:last-child {
    border-radius: 0 0 4px 4px;
}

/* Ajuste para o input com botão de limpar */
#search {
    padding-right: 35px;
}

/* Botão de limpar */
.btn-link.text-muted {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: none;
    border: none;
    font-size: 1.2rem;
    display: none;
    cursor: pointer;
}

.btn-link.text-muted:hover {
    color: #dc3545 !important;
}