/* Car Single Page - Specifications Table */
.specifications-table {
    margin-top: 15px;
    margin-bottom: 20px;
}

.specifications-table .table {
    background: transparent;
    margin-bottom: 0;
}

.specifications-table .table td {
    padding: 8px 0;
    border: none;
    font-size: 14px;
    line-height: 1.5;
}

.specifications-table .spec-label {
    color: #666;
    font-weight: 500;
    width: 40%;
    padding-right: 15px;
}

.specifications-table .spec-value {
    color: #333;
    font-weight: 600;
}

.specifications-table .table tbody tr {
    border-bottom: 1px solid #eee;
}

.specifications-table .table tbody tr:last-child {
    border-bottom: none;
}

/* Responsive */
@media (max-width: 768px) {
    .specifications-table .spec-label {
        width: 50%;
    }
}