/* =========================
   Reset CSS de base
   ========================= */
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

/* 
   Pour cibler précisément la liste avec class="tw-space-y-0.5".
   Ajoutez ou remplacez des couleurs si besoin.
*/
/* Design commun à tous les liens de la liste */
ul.tw-space-y-0\.5 > li > a {
  display: block;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 14px;
  color: #fff; /* Texte blanc */
  border-radius: 6px;
  text-decoration-line: underline;
  text-decoration-style: wavy;
  text-decoration-color: #1f5afe;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow:
    1px 1px 0px rgba(0,0,0,0.05),
    2px 2px 0px rgba(0,0,0,0.07),
    3px 3px 0px rgba(0,0,0,0.09),
    4px 4px 0px rgba(0,0,0,0.11),
    5px 5px 0px rgba(0,0,0,0.13);
}

/* Survol - garder effet texte seulement */
ul.tw-space-y-0\.5 > li > a:hover {
  text-decoration-color: #0f4cf5;
  text-decoration-thickness: 3px;
  transform: translateY(-2px);
}

/* Couleurs personnalisées par position (tes couleurs d'origine) */
ul.tw-space-y-0\.5 > li:nth-child(1) a { background-color: #F9C3C3; }
ul.tw-space-y-0\.5 > li:nth-child(2) a { background-color: #C3F9D8; }
ul.tw-space-y-0\.5 > li:nth-child(3) a { background-color: #C3D8F9; }
ul.tw-space-y-0\.5 > li:nth-child(4) a { background-color: #F9E3C3; }
ul.tw-space-y-0\.5 > li:nth-child(5) a { background-color: #F3C3F9; }
ul.tw-space-y-0\.5 > li:nth-child(6) a { background-color: #FFFACD; }
ul.tw-space-y-0\.5 > li:nth-child(7) a { background-color: #D1F2EB; }
ul.tw-space-y-0\.5 > li:nth-child(8) a { background-color: #FADBD8; }
ul.tw-space-y-0\.5 > li:nth-child(9) a { background-color: #D6EAF8; }
ul.tw-space-y-0\.5 > li:nth-child(10) a { background-color: #FDEBD0; }
ul.tw-space-y-0\.5 > li:nth-child(11) a { background-color: #FEE2E2; }
ul.tw-space-y-0\.5 > li:nth-child(12) a { background-color: #FEF9C3; }
ul.tw-space-y-0\.5 > li:nth-child(13) a { background-color: #E0F2FE; }
ul.tw-space-y-0\.5 > li:nth-child(14) a { background-color: #DCFCE7; }
ul.tw-space-y-0\.5 > li:nth-child(15) a { background-color: #F3E8FF; }
ul.tw-space-y-0\.5 > li:nth-child(16) a { background-color: #B5F5EC; }
ul.tw-space-y-0\.5 > li:nth-child(17) a { background-color: #FFC3F9; }
ul.tw-space-y-0\.5 > li:nth-child(18) a { background-color: #F0FFF0; }
ul.tw-space-y-0\.5 > li:nth-child(19) a { background-color: #FFF0F0; }
ul.tw-space-y-0\.5 > li:nth-child(20) a { background-color: #C3C3F9; }


blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: ' ';
  clear: both;
  height: 0;
}

.clearfix {
  display: inline-block;
}

* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

/* =========================
   Styles personnalisés
   ========================= */

/* Bordures et espacements pour les cellules */
table,
th,
td {
  border: 1px solid #ccc; /* Bordure d’1px autour du tableau et des cellules */
}

/* Donne un peu d'espace autour du tableau et l'étire en largeur */
table {
  width: 100%;
  margin-bottom: 1.5rem;
}

/* Espacement intérieur pour chaque cellule */
table th,
table td {
  padding: 8px;
  text-align: left;
  vertical-align: middle;
}

/* 
   Couleurs d'arrière-plan différentes pour 10 colonnes d'en-tête. 
   Ajustez ou remplacez ces couleurs selon vos préférences.
*/
table thead th:nth-child(1) {
  background-color: #F9C3C3; /* Rouge clair */
}
table thead th:nth-child(2) {
  background-color: #C3F9D8; /* Vert clair */
}
table thead th:nth-child(3) {
  background-color: #C3D8F9; /* Bleu clair */
}
table thead th:nth-child(4) {
  background-color: #F9E3C3; /* Orange clair */
}
table thead th:nth-child(5) {
  background-color: #F3C3F9; /* Violet clair */
}
table thead th:nth-child(6) {
  background-color: #FFFACD; /* Jaune très clair (LemonChiffon) */
}
table thead th:nth-child(7) {
  background-color: #D1F2EB; /* Vert d'eau très clair */
}
table thead th:nth-child(8) {
  background-color: #FADBD8; /* Rose très clair */
}
table thead th:nth-child(9) {
  background-color: #D6EAF8; /* Bleu ciel très clair */
}
table thead th:nth-child(10) {
  background-color: #FDEBD0; /* Beige clair */
}

table thead th {
  font-weight: bold; /* Met le texte d’en-tête en gras */
  color: #333;       /* Couleur du texte dans l'en-tête */
}

/* Style général mini pour boutons statuts */
.tw-flex a.tw-bg-transparent {
  transition: all 0.5s;
  font-size: 12px; /* 👈 Taille plus petite */
  padding: 4px 10px; /* 👈 Moins de padding */
  background-color: white;
  color: #000;
  cursor: pointer;
  border: none;
  border-radius: 4px; /* 👈 Bord arrondi discret */
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  box-shadow:
    1px 1px 0px hsl(0, 0%, 90%),
    2px 2px 0px hsl(0, 0%, 80%),
    3px 3px 0px hsl(0, 0%, 70%),
    4px 4px 0px hsl(0, 0%, 60%),
    5px 5px 0px hsl(0, 0%, 50%),
    6px 6px 0px hsl(0, 0%, 40%),
    7px 7px 0px hsl(0, 0%, 30%),
    8px 8px 0px hsl(0, 0%, 20%),
    9px 9px 0px hsl(0, 0%, 10%);
}

/* Au survol */
.tw-flex a.tw-bg-transparent:hover {
  background: #ffffff !important;
  color: #0f4cf5 !important;
  transform: translateY(-1px);

  border-top: none !important;
  border-bottom: 4pt solid #1f5afe !important;

  /* Suppression de l'inset, ombre externe uniquement vers le bas */
  box-shadow:0px 6px 10px rgba(0, 0, 0, 0.3) !important; /* Ombre externe vers le bas */

}

.tw-flex a.tw-bg-transparent {
  margin-right: 8px; /* 👈 Espace horizontal entre les boutons */
  margin-bottom: 8px; /* 👈 Espace vertical si ça passe à la ligne */
}

