/* Front-end Styles */
.polestar-specs-container {
    font-family: Arial, sans-serif;
    max-width: 900px;
    margin: 0 auto 40px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.polestar-header {
    text-align: center;
    background-color: #2a2a2a;
    color: white;
    padding: 15px;
}

.polestar-svg-container {
    background-color: #f8f9fa;
    padding: 20px 0;
    display: flex;
    justify-content: center;
}

.polestar-specs-sections {
    display: flex;
    flex-wrap: wrap;
}

.polestar-spec-section {
    flex: 1;
    min-width: 250px;
    padding: 15px;
    box-sizing: border-box;
}

.polestar-spec-title {
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    font-size: 1.1em;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.polestar-spec-item {
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
}

.polestar-spec-label {
    color: #666;
}

.polestar-spec-value {
    font-weight: bold;
    text-align: right;
}

.highlight {
    color: #0066cc;
    font-weight: bold;
}

/* Car SVG Styles */
.car-body {
    fill: #2a2a2a;
    stroke: #2a2a2a;
    stroke-width: 2;
}

.car-windows {
    fill: #a0d2eb;
    stroke: #2a2a2a;
    stroke-width: 1;
}

.car-wheels {
    fill: #495057;
    stroke: #2a2a2a;
    stroke-width: 1;
}