/* CSS pour l'article Pierriste texte aligné à gauche */
.article-container {
    display: flex;
    width: 100%;
    margin-bottom: 20px;
}

.article-content {
    width: 76%;
    padding-right: 20px;
    text-align: left;
}

.article-images {
    width: 24%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.article-images img {
    margin-bottom: 10px;
}

.comparison-table {
    width: 90%;
    border-collapse: collapse;
    margin: 20px 0;
}

.comparison-table th, .comparison-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

.comparison-table th {
    background-color: #f2f2f2;
}
/* // Fin du CSS pour l'article Pierriste texte aligné à gauche */

/* CSS pour le tableau microns */
.micron-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 18px;
    text-align: left;
}

.micron-table th, .micron-table td {
    padding: 12px;
    border: 1px solid #ddd;
}

.micron-table th {
    background-color: #f2f2f2;
}

.micron-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.micron-table tr:hover {
    background-color: #f1f1f1;
}

.micron-table caption {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: bold;
}
/* // Fin du CSS pour le tableau microns */

/* Styles de base pour le tableau mesh - Couluers) */
.responsive-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
    text-align: left;
}

.responsive-table th, .responsive-table td {
    padding: 8px;
    border: 1px solid #dddddd;
}

.responsive-table th {
    background-color: #f2f2f2;
}

/* Styles pour les différentes couleurs de fond */
.bg-FFFF99 {
    background-color: #FFFF99;
}

.bg-CCFFCC {
    background-color: #CCFFCC;
}

.bg-FFFFFF {
    background-color: #FFFFFF;
}

.bg-FFCC99 {
    background-color: #FFCC99;
}

.bg-FF99CC {
    background-color: #FF99CC;
}

.bg-FF0000 {
    background-color: #FF0000;
}

.bg-99CC00 {
    background-color: #99CC00;
}

.bg-FF00FF {
    background-color: #FF00FF;
}

.bg-008080 {
    background-color: #008080;
}

.bg-CC99FF {
    background-color: #CC99FF;
}

.bg-993366 {
    background-color: #993366;
}

.bg-000080 {
    background-color: #000080;
}

.bg-333399 {
    background-color: #333399;
}

/* Ajuster la taille des colonnes pour les petits écrans */
@media screen and (max-width: 600px) {
    .responsive-table {
        font-size: 10px;
    }
    .responsive-table th, .responsive-table td {
        padding: 4px;
    }
}

/* // Fin Styles de base pour le tableau mesh */

/* Table responsive pour le tableau mesh */
.responsive-table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    border-collapse: collapse;
    font-size: 0.85em;
    overflow-x: auto;
    display: block;
}

.responsive-table thead {
    background-color: #f8f9fa;
}

.responsive-table th,
.responsive-table td {
    padding: 0.5rem;
    text-align: center;
    border: 1px solid #dee2e6;
    white-space: nowrap;
}

.responsive-table td.petit {
    font-size: 0.75em;
    padding: 0.25rem;
}

.responsive-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* Pour les écrans étroits */
@media screen and (max-width: 768px) {
    .responsive-table {
        font-size: 0.7em;
    }

    .responsive-table th,
    .responsive-table td {
        padding: 0.25rem;
        min-width: 25px;
    }

    .responsive-table td[width="15%"],
    .responsive-table th[width="15%"] {
        min-width: 40px;
    }

    .responsive-table td[width="34%"],
    .responsive-table th[width="34%"] {
        min-width: 60px;
    }
}
/* fin du /* Style pour le tableau mesh responsive */