﻿/* ==========================================================================
   SEARCH TOOLBAR
   ========================================================================== */

.search-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 2px 0;
}

.search-toolbar-left {
    flex: 1 1 auto;
    min-width: 0;
    color: #7c7979;
    font-size: 1.3rem;
    line-height: 1.4;
    text-align: left;
    white-space: nowrap;
}

    .search-toolbar-left strong {
        color: #1f2f46;
        font-weight: 700;
    }

.search-toolbar-select-wrap {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.search-toolbar-inline-label {
    margin: 0;
    color: #8b8b8b;
    font-size: 1.2rem;
    font-weight: 600;
    white-space: nowrap;
}

.search-toolbar-select {
    width: 140px;
    min-width: 140px;
    height: 35px;
    padding: 0 28px 0 14px;
    color: #575555;
    background-color: #fafafa;
    border: 1px solid #d5dbe7;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.2;
    cursor: pointer;
    transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

    .search-toolbar-select:hover {
        background-color: #fcfdff;
        border-color: #bcc7da;
    }

    .search-toolbar-select:focus {
        border-color: #8fb2e6;
        outline: 0;
        box-shadow: 0 0 0 0.2rem rgba(70, 120, 210, 0.12);
    }


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 768px) {
    .search-toolbar {
        gap: 10px;
    }

    .search-toolbar-left {
        font-size: 1.2rem;
    }

    .search-toolbar-inline-label {
        font-size: 1.1rem;
    }

    .search-toolbar-select {
        width: 120px;
        min-width: 120px;
        height: 28px;
        padding: 0 32px 0 14px;
        font-size: 1.2rem;
    }

    .vehiculo-sub {
        font-size: 1.35rem;
        line-height: 1.9rem;
    }
}
/* ==========================================================================
  NO ENCONTRADO
   ========================================================================== */

.no-encontrado {
    padding: 100px 0;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;


}

    .no-encontrado h1 {
        margin-bottom: 30px;
        color: var(--base-color);
        font-size: 30px;
        font-weight: bold;
    }

    .no-encontrado a {
        margin-top: 50px;
        color: var(--base-color);
    }

 
    .no-encontrado p {
        color: #555;
        line-height: 1.6;
    }