/* _content/Frontend/Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-46ojlnh66e] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-46ojlnh66e] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/Frontend/Components/Pages/Home/Includes/CarsList.razor.rz.scp.css */
.car-card-container[b-6hpmbi5s7f] {
    padding: 12px;
    width: 100%;
    /*display: grid;*/
    /*grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));*/
    /*gap: 14px;*/
    /*padding: 14px;*/
    /*align-items: start;*/
}


.car-card[b-6hpmbi5s7f] {
    display: flex;
    flex-direction: row;
    max-width: 1200px;
    max-height: 300px;
    height: 300px;
    width: 100%;
    margin-bottom: 8px;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.12s ease, box-shadow 0.12s ease;
    cursor: pointer;
    
}

.car-card:hover[b-6hpmbi5s7f] {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.car-images[b-6hpmbi5s7f] {
    width: 400px;
    height: 100%;
}

.car-card-thumbnail[b-6hpmbi5s7f] {
    width: 100%;
    height: 170px;
    background: rgba(0, 0, 0, 0.04);
}

.thumbnail-image[b-6hpmbi5s7f] {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background-color: #fff;
}

.thumbnail-image[b-6hpmbi5s7f] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.car-card-body[b-6hpmbi5s7f] {
    padding: 12px 14px;
}

.car-top[b-6hpmbi5s7f] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.car-title[b-6hpmbi5s7f] {
    margin: 0;
    font-weight: 700;
    font-size: 0.98rem;
    line-height: 1.2;
}

.car-price[b-6hpmbi5s7f] {
    font-weight: 800;
    white-space: nowrap;
}

.car-meta[b-6hpmbi5s7f] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.car-pill[b-6hpmbi5s7f] {
    font-size: 0.82rem;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.06);
    color: rgba(0, 0, 0, 0.7);
}
