/**
 * Stiluri pentru tabelul de atribute AI SEO
 */

.ai-seo-product-attributes {
    margin: 30px 0;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.ai-seo-product-attributes h3 {
    padding: 12px 15px;
    margin: 0;
    background-color: #f7f7f7;
    border-bottom: 1px solid #e5e5e5;
    font-size: 16px;
    font-weight: 600;
}

.ai-seo-product-attributes table.shop_attributes {
    border-collapse: collapse;
    margin: 0;
    width: 100%;
}

.ai-seo-product-attributes table.shop_attributes tr:nth-child(odd) td,
.ai-seo-product-attributes table.shop_attributes tr:nth-child(odd) th {
    background-color: rgba(0, 0, 0, 0.025);
}

.ai-seo-product-attributes table.shop_attributes th {
    width: 25%;
    font-weight: 600;
    padding: 10px 15px;
    text-align: left;
    border-bottom: 1px solid #e5e5e5;
    text-transform: capitalize;
}

.ai-seo-product-attributes table.shop_attributes td {
    padding: 10px 15px;
    border-bottom: 1px solid #e5e5e5;
}

.ai-seo-product-attributes table.shop_attributes tr:last-child th,
.ai-seo-product-attributes table.shop_attributes tr:last-child td {
    border-bottom: none;
}

/* Stiluri responsive */
@media (max-width: 768px) {
    .ai-seo-product-attributes table.shop_attributes th {
        width: 40%;
    }
}

@media (max-width: 480px) {
    .ai-seo-product-attributes table.shop_attributes th,
    .ai-seo-product-attributes table.shop_attributes td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
    
    .ai-seo-product-attributes table.shop_attributes th {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .ai-seo-product-attributes table.shop_attributes td {
        padding-top: 5px;
    }
} 