/* Ajuste para badges na listagem */
.card .badge {
    font-size: 0.75rem;
    padding: 0.25em 0.5em;
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    z-index: 10;
}

/* Barra de loading */
.search-loading-bar {
    position: relative;
    width: 100%;
    height: 4px;
    background-color: #d3ecdb;
    overflow: hidden;
    margin-bottom: 10px;
    display: none;
}

.search-loading-bar::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 40%;
    background-color: #35a659;
    animation: loading-bar-forward 1s linear infinite;
}

@keyframes loading-bar-forward {
    0%   { left: -30%; }
    100% { left: 100%; }
}

.disable-filters {
    opacity: .7;
    pointer-events: none;
    outline: 0;
}