.tech-specs-container {
    padding: 20px 0;
}

.tech-specs-section {
    margin-bottom: 30px;
}

.tech-specs-section:last-child {
    margin-bottom: 0;
}

.tech-specs-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
    color: #1a1a1a;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 9px;
    text-align: left;
}

.tech-specs-table {
    width: 100%;
    border-collapse: collapse;
}

.tech-specs-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
}

.tech-specs-table tbody tr:last-child {
    border-bottom: none;
}

section.product_main_container > div > div.product-right > div.single_product_details > div.accordion-container > div.panel.active > div > div > table > tbody > tr{display:flex;width: 100%;justify-content: space-between;align-items: center;}

.spec-label {
    font-weight: 600;
    color: #666;
    padding: 8px 12px;
    vertical-align: middle;
}

.spec-value {
    color: #333;
    padding: 8px 12px;
}

/* Responsive design */
@media (max-width: 768px) {
    .tech-specs-table {
        display: block;
    }
    
    .tech-specs-table tbody {
        display: block;
    }
    
    .tech-specs-table tbody tr {
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid #f0f0f0;
        padding: 10px 0;
    }
    
    .spec-label {
        width: 100%;
        padding: 5px 0;
        font-size: 14px;
    }
    
    .spec-value {
        width: 100%;
        padding: 5px 0 10px 0;
    }
}