a {
    color: #000; /* Couleur du texte des liens (gris foncé ici, mais vous pouvez choisir une autre couleur) */
    text-decoration: none; /* Supprime le soulignement par défaut */
    transition: color 0.3s ease; /* Animation fluide pour le changement de couleur au survol */
}

th,
td {
  border: 1px solid rgb(160 160 160);
  padding: 8px 10px;
}

th[scope="col"], th[scope="col"] a {
  background-color: #505050;
  color: #fff  !important;
}

th[scope="col_orange"] {
  background-color: #eb5600;
  color: #fff;
  border-color: #fff;
}

th[scope="col_vert"] {
  background-color: #199988;
  color: #fff;
  border-color: #fff;
}

td[scope="row_vert"], td[scope="row_vert"] a {
  background-color: #4682b4;
  color: #fff;
  border-color: #fff;
  font-weight : bold;
}

th[scope="row"] {
  background-color: #d6ecd4;
}

th[scope="row_orange"] {
  background-color: #eb5600;
  color: #fff;
  border-color: #fff;
}

th[scope="row_vert"] {
  background-color: #199988;
  color: #fff;
  border-color: #fff;
}

td {
  text-align: center;
}

tr:nth-of-type(even) {
  background-color: #eee;
}

tr[scope="row_orange"]:nth-of-type(even) {
  background-color: #f5e5d7  !important;
}

tr[scope="row_vert"]:nth-of-type(even) {
  background-color: #eefaf8  !important;
}

table {
  border-collapse: collapse;
  border: 2px solid rgb(140 140 140);
  font-family: sans-serif;
  font-size: 0.8rem;
  letter-spacing: 1px; 
}

caption {
  caption-side: bottom;
  padding: 10px;
}

th {
    cursor: pointer;
}

.tri {
    font-size: 12px;
    margin-left: 5px;
}

.asc::after {
    content: " ↑";
}

.desc::after {
    content: " ↓";
}


 body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 10px;
    color: #333;
    margin: 0 auto;
}
h1, h2, h3 {
    color: #2c3e50;
}
.summary {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}
.stat-card {
    flex: 1;
    min-width: 200px;
    padding: 15px;
    border-radius: 5px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.stat-number {
    font-size: 1.8em;
    font-weight: bold;
    color: #3498db;
}
.stat-label {
    color: #7f8c8d;
}
table {
    border-collapse: collapse;
    margin: 20px 0;
}
th, td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}
th {
    background-color: #f2f2f2;
}
tr:hover {
    background-color: #f5f5f5;
}
.chart-container {
    margin: 20px 0;
}
.chart-item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}
.chart-label {
    width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.chart-bar {
    height: 20px;
    background-color: #3498db;
    margin: 0 10px;
    border-radius: 2px;
}
.chart-value {
    width: 60px;
    text-align: right;
}
.error {
    color: #e74c3c;
    background-color: #fadbd8;
    padding: 10px;
    border-radius: 3px;
    margin: 10px 0;
}
.path-form {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 5px;
}
input[type="text"] {
    padding: 8px;
    width: 80%;
    border: 1px solid #ddd;
    border-radius: 3px;
}
button {
    padding: 8px 15px;
    background-color: #3498db;
    border: none;
    color: white;
    border-radius: 3px;
    cursor: pointer;
}
button:hover {
    background-color: #2980b9;
}
.breadcrumb {
    margin-bottom: 20px;
    padding: 10px;
    background-color: #f5f5f5;
    border-radius: 3px;
}
.breadcrumb a {
    color: #3498db;
    text-decoration: none;
    margin: 0 5px;
}
.breadcrumb a:hover {
    text-decoration: underline;
}
footer {
    text-align: center;
    margin-top: 40px;
    color: #7f8c8d;
}

#confirmation {
      display: none;
      color: green;
      margin-top: 10px;
    }