/**
 * Styles pour la page de synchronisation des prix
 */

/* Résultats finaux */
.pc-sync-summary-box {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.pc-sync-summary-box p {
    margin: 5px 0;
}

.pc-sync-results-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pc-sync-results-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
}

.pc-sync-results-list li:last-child {
    border-bottom: none;
}

.pc-sync-results-list li .icon {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.pc-sync-results-list li.success .icon {
    color: #2e7d32;
}

.pc-sync-results-list li.error .icon {
    color: #c62828;
}

/* Animation de chargement */
@keyframes pc-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.pc-sync-loader .spinner {
    animation: pc-spin 1s linear infinite;
}

/* Responsive */
@media screen and (max-width: 782px) {
    .pc-sync-actions {
        flex-direction: column;
    }
    
    .pc-product-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .pc-product-card-meta {
        width: 100%;
        flex-wrap: wrap;
    }
    
    .pc-variations-table {
        font-size: 12px;
    }
    
    .pc-variations-table th,
    .pc-variations-table td {
        padding: 6px 8px;
    }
}
