/* Default styling for table */
.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  padding: 10px;
  border: 1px solid #008B8B;
  /* Couleur et épaisseur des bordures */
  text-align: right;
  line-height: 1.3; /* Ajout de line-height pour ajuster la hauteur des lignes */
}

/* Style for table header */
.table th {
  color: #fff;
  padding: 22px 40px;
  background: #008B8B;
}

.table td {
  padding: 22px 20px;
  background: #ffffff;
}

/* Style for table header text */
.table th div {
  color: #fff;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
}

/* Media query for screens smaller than 768px (e.g., mobile) */
@media (max-width: 768px) {
  .table th,
  .table td {
    padding: 5px;
    font-size: 12px;
    line-height: 1.2; /* Ajuster la hauteur des lignes en mode mobile */
  }

  .table th {
    font-size: 12px;
  }

  /* Hide table header text on mobile */
  .table th div {
    color: #fff;
    display: none;
  }

  /* Display table header text as a pseudo-element */
  .table th::before {
    color: #fff;
    content: attr(data-title);
    display: block;
    color: #fff;
    text-transform: uppercase;
  }

  .table td {
    padding: 10px;
    border: 1px solid #e5e5e5;
    text-align: left;
    background-color: #ffffff;
    /* Couleur de fond blanche */
  }
}