/* Vehicle Specs Elementor Widget Styles */

.specs-container {
    width: 100%;
    max-width: 600px;
    padding: 16px 24px;
    box-sizing: border-box;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-family: 'Alexandria', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 16px;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 500;
    color: #495057;
}

.spec-value {
    font-weight: 700;
    text-align: right;
    color: #1B1F26;
}

/* Responsive styles */
@media (max-width: 480px) {
    .spec-row {
        font-size: 14px;
    }
    
    .specs-container {
        padding: 12px 16px;
    }
}

/* Elementor editor specific styles */
.elementor-editor-active .specs-container {
    margin: 0 auto;
}

/* Additional utility classes */
.specs-container.centered {
    margin: 0 auto;
}

.specs-container.full-width {
    max-width: 100%;
}
