

/* Frontend styles for Tires & Wheels Custom Fields */
.tire-variations-tabs {
    margin: 40px 0;
    clear: both;
}

.tire-tabs-navigation {
    margin-bottom: 20px;
}

.tire-tabs-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #ddd;
}

.tire-tabs-list .tire-tab {
    padding: 10px 20px;
    margin: 0 5px 0 0;
    cursor: pointer;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-bottom: none;
    border-radius: 4px 4px 0 0;
}

.tire-tabs-list .tire-tab.active {
    background: #fff;
    border-bottom: 1px solid #fff;
    margin-bottom: -1px;
    font-weight: bold;
}

.tire-tab-content {
    display: none;
    padding: 20px;
    border: 1px solid #ddd;
    border-top: none;
}

.tire-tab-content.active {
    display: block;
}

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

.tire-variations-table th,
.tire-variations-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.tire-variations-table th {
    background-color: #f5f5f5;
}

.tire-variations-table tr:nth-child(even) {
    background-color: #f9f9f9;
}