.cars-in-stock-block .d-flex {
    flex-wrap: wrap;
}
.list {
    margin-bottom: 12px;
}


.tabs {
}

.tabs__header {
    display: flex;
    gap: 16px;
}

.tabs__btn {
    padding: 12px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border: 1px solid #d93e3a;
    transition: all 0.3s ease;
    color:#d93e3a;
    border-radius: 36px;
}

.tabs__btn:hover {
    background-color: #f5f5f5;
}

.tabs__btn.active {
    background-color: #d93e3a;
    color: #fff;
}

.tabs__panel {
    display: none;
    padding: 20px 0px;
    animation: fadeIn 0.3s ease;
}

.tabs__panel.active {
    display: block;
}

.tabs__panel h3 {
    margin-top: 0;
    color: inherit;
    font-weight: 700;
    font-size: 22px;
}

.tabs__panel ul {
    list-style-type: none;
    padding: 0;
}

.tabs__panel li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.tabs__panel table {
    width: 100%;
    border-collapse: collapse;
}

.tabs__panel td {
    padding: 8px;
    border-bottom: 1px solid #eee;
}

.tabs__panel td:first-child {
    font-weight: bold;
    width: 40%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}