/* =========================================

   BUSCADOR + TAB DE VENTAS

   ========================================= */

/* ========== COLORES Header v1.7 ========== */
:root {
    --header-bg: #003362;
    --header-line: #42AD49;
    --btn-inicio-bg: #003362;
    --btn-inicio-hover: #9DE164;
    --admin-header-bg: #555555;
    --admin-header-line: #FF9800;
}
/* ========== end COLORES Header v1.7 ========== */

.search-bar-row {
    display: flex;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 10px;
}

.search-bar-row .search-box {
    flex: 1 1 auto;
    min-width: 0;
    margin-bottom: 0;
}

.btn-ventas {
    flex: 0 0 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 0 18px;
    border-radius: 50px;
    border: 2px solid var(--btn-map-border);
    background: #fff;
    color: var(--btn-map-border);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    white-space: nowrap;
    box-sizing: border-box;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-ventas .ventas-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    padding: 8px;
}

.btn-ventas .ventas-label {
    text-transform: none;
}

.btn-ventas:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(77, 136, 236, 0.16);
}

@media (max-width: 768px) {
    .search-bar-row {
        flex-direction: column;
    }

    .btn-ventas {
        width: 100%;
        flex: 1 1 auto;
        min-height: 58px;
    }
}
