/* Minimal Bars Style */
.vehicle-lookup.gauge-style-minimal-bars .performance-display {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 20px 0;
}

.vehicle-lookup.gauge-style-minimal-bars .performance-card {
    padding: 20px;
}

.vehicle-lookup.gauge-style-minimal-bars .performance-title {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 20px;
}

.vehicle-lookup.gauge-style-minimal-bars .bar-container {
    position: relative;
    height: 60px;
    margin: 15px 0;
}

.vehicle-lookup.gauge-style-minimal-bars .bar-label {
    position: absolute;
    left: 0;
    top: -20px;
    font-size: 0.9em;
    color: #666;
}

.vehicle-lookup.gauge-style-minimal-bars .bar-value {
    position: absolute;
    right: 0;
    top: -20px;
    font-size: 0.9em;
    font-weight: bold;
}

.vehicle-lookup.gauge-style-minimal-bars .bar-background {
    position: absolute;
    width: 100%;
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

.vehicle-lookup.gauge-style-minimal-bars .bar-fill {
    position: absolute;
    height: 100%;
    width: var(--percentage);
    background: var(--vl-primary-color);
    border-radius: 4px;
    transition: width 1s ease-out;
}

.vehicle-lookup.gauge-style-minimal-bars .standard-bar .bar-fill {
    background: #dc3545;
}

.vehicle-lookup.gauge-style-minimal-bars .tuned-bar .bar-fill {
    background: #28a745;
}

.vehicle-lookup.gauge-style-minimal-bars .gain-indicator {
    margin-top: 30px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.vehicle-lookup.gauge-style-minimal-bars .gain-value {
    font-size: 1.4em;
    font-weight: bold;
    color: #28a745;
}

.vehicle-lookup.gauge-style-minimal-bars .gain-label {
    font-size: 0.9em;
    color: #666;
    margin-top: 5px;
}

