/* Barra de pesquisa — estilo DonaldBet */

.apex-search-wrap {
    --search-text: rgba(255, 255, 255, 0.92);
    --search-muted: rgba(255, 255, 255, 0.6);
    --search-placeholder: rgba(255, 255, 255, 0.4);
    --search-bg: #18181b;
    --search-border: rgba(255, 255, 255, 0.06);
}

.apex-search-wrap .relative.mb-1.w-full {
    margin-bottom: 0 !important;
}

.apex-search-wrap .flex.w-full {
    display: block;
    width: 100%;
}

.apex-search-field {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    width: 100%;
    height: 2.5rem;
    padding: 0 1rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: var(--search-text);
    background: var(--search-bg);
    border: 1px solid var(--search-border);
    border-radius: 12px;
    box-sizing: border-box;
}

.apex-search-field .apex-search-icon {
    flex-shrink: 0;
    width: 15px;
    height: 15px;
    color: var(--search-muted);
}

.apex-search-input {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    appearance: none;
    background: transparent;
    color: inherit;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 400;
    white-space: nowrap;
    outline: none;
    box-shadow: none;
}

.apex-search-input::placeholder {
    color: var(--search-placeholder);
    opacity: 1;
}

.apex-search-input:focus {
    outline: none;
    box-shadow: none;
    ring: none;
}

.apex-search-field > button[type="button"] {
    display: none !important;
}

@media (min-width: 1280px) {
    .apex-search-wrap.relative.z-\[70\] {
        margin-bottom: 2.75rem !important;
    }
}
