/*
Theme Name: Child elementor
Theme URI:  https://netil.fr
Author:     Netil
Author URI: https://netil.fr
Template:   hello-elementor
Version:    1.0
License:    GNU General Public License v2 or later
*/
.woocommerce-product-gallery__image img.zoomImg {
    display: none !important; /* Masque l'image zoomée */
}

.woocommerce-product-gallery__image img {
    pointer-events: none; /* Désactive les interactions */
    transform: none !important; /* Supprime le zoom */
    transition: none !important; /* Supprime les animations */
}
/* Styles pour tous les tableaux */
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 2px solid #6D7AFA;
    border-radius: 10px;
    overflow: hidden;
    font-family: Arial, sans-serif;
    margin-bottom: 20px;
}

thead {
    background-color: #6D7AFA;
    color: white;
    font-size: 16px;
    text-transform: uppercase;
}

thead th {
    padding: 15px;
    text-align: center;
}

tbody tr:nth-child(even) {
    background-color: #DADCFC;
}

tbody tr:nth-child(odd) {
    background-color: #F9F9F9;
}

tbody td {
    padding: 15px;
    text-align: center;
    font-size: 15px;
    color: #333;
}

tbody tr:last-child td {
    border-bottom: none;
}

tbody tr:hover {
    background-color: #EFEFFF;
    transition: background-color 0.3s ease-in-out;
}

.check {
    color: #6D7AFA;
    font-weight: bold;
}

.cross {
    color: red;
    font-weight: bold;
}

tfoot {
    background-color: #6D7AFA;
    color: white;
}

tfoot td {
    padding: 10px;
    font-size: 14px;
}

/* Ajouter des coins arrondis pour les cellules */
th:first-child,
td:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

th:last-child,
td:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* Style des textes */
th, td {
    font-weight: 500;
    line-height: 1.5;
}

/* Pour un style mobile responsive */
@media (max-width: 768px) {
    table {
        font-size: 14px;
    }

    thead th,
    tbody td {
        padding: 10px;
    }
}
