@charset "UTF-8";/* Ancien style (désactivé)
.article-content table {
  border-collapse: collapse;
  width: 100%;
  margin: 1em 0;
}
.article-content th,
.article-content td {
  border: 1px solid #444;
  padding: 6px 10px;
  text-align: left;
}
.article-content th {
  background-color: #f6f6f6;
  font-weight: bold;
}
.article-content tr:nth-child(even) {
  background-color: #fafafa;
}
*/

/* =========================================================
   🎨 STYLE BONUS GLOBAL (par défaut pour tous les tableaux)
   ========================================================= */
.article-content table {
  border-collapse: collapse;
  width: 100%;
  margin: 1.5em 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
  border-radius: 6px;          /* coins arrondis */
  overflow: hidden;            /* pour appliquer les coins arrondis */
  box-shadow: 0 2px 6px rgba(0,0,0,0.1); /* ombre douce */
}

.article-content th,
.article-content td {
  border: 1px solid #ddd;
  padding: 8px 12px;
  text-align: left;
}

.article-content th {
  background-color: #f2f2f2;
  font-weight: bold;
  color: #333;
}

.article-content tr:nth-child(even) {
  background-color: #fafafa;
}

.article-content tr:hover {
  background-color: #e6f2ff;   /* bleu clair au survol */
  transform: scale(1.01);      /* léger effet loupe */
  transition: all 0.2s ease;
}

/* =========================================================
   📊 STYLE 1 : CLAIR façon Excel
   (à activer avec class="table-excel" dans JCE)
   ========================================================= */
.table-excel {
  border-collapse: collapse;
  width: 100%;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.table-excel th,
.table-excel td {
  border: 1px solid #ccc;
  padding: 8px 12px;
  text-align: left;
}

.table-excel th {
  background-color: #f2f2f2;
  font-weight: bold;
}

.table-excel tr:nth-child(even) {
  background-color: #fafafa;
}

.table-excel tr:hover {
  background-color: #e6f2ff;
}

/* =========================================================
   🌙 STYLE 2 : SOMBRE élégant
   (à activer avec class="table-dark" dans JCE)
   ========================================================= */
.table-dark {
  border-collapse: collapse;
  width: 100%;
  background-color: #2b2b2b;
  color: #eee;
  font-family: Arial, sans-serif;
  font-size: 14px;
  border-radius: 6px;
  overflow: hidden;
}

.table-dark th,
.table-dark td {
  border: 1px solid #555;
  padding: 10px 14px;
  text-align: left;
}

.table-dark th {
  background-color: #444;
  color: #fff;
}

.table-dark tr:nth-child(even) {
  background-color: #333;
}

.table-dark tr:hover {
  background-color: #555;
  transition: background 0.3s ease;
}

/* =========================================================
   💎 STYLE 3 : MODERNE avec ombre et arrondis
   (à activer avec class="table-modern" dans JCE)
   ========================================================= */
.table-modern {
  border-collapse: collapse;
  width: 100%;
  font-family: Arial, sans-serif;
  font-size: 14px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.table-modern th,
.table-modern td {
  border: 1px solid #ddd;
  padding: 10px 14px;
  text-align: left;
}

.table-modern th {
  background-color: #f9f9f9;
  font-weight: bold;
  color: #333;
}

.table-modern tr:nth-child(even) {
  background-color: #fdfdfd;
}

.table-modern tr:hover {
  background-color: #f0f8ff;
  transform: scale(1.01);
  transition: all 0.2s ease;
}

