/* ============================================
   STYLES POST-PERMIS
   Animation Rendez-vous Post-Permis
   ============================================ */

/* Images côte à côte */
.postpermis_images {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  margin: 30px 0;
  flex-wrap: wrap;
}

.postpermis_soustitre {
  font-style: italic;
  color: #666;
  margin-bottom: 20px;
}

/* ============================================
   TABLEAU PROGRAMME POST-PERMIS
   ============================================ */

.tableau_postpermis_container {
  overflow-x: auto;
  margin-bottom: 30px;
}

.tableau_postpermis {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--taille-texte-petit);
}

.tableau_postpermis th,
.tableau_postpermis td {
  border: 1px solid #ddd;
  padding: 12px 15px;
  text-align: left;
  vertical-align: top;
}

.tableau_postpermis th {
  background-color: var(--couleur-postpermis);
  color: white;
  font-weight: 600;
}

.tableau_postpermis th:first-child,
.tableau_postpermis td:first-child {
  width: 35%;
}

.tableau_postpermis th:last-child,
.tableau_postpermis td:last-child {
  width: 65%;
}

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

.tableau_postpermis tbody tr:hover {
  background-color: var(--couleur-secondaire);
}

.tableau_postpermis td em {
  color: #666;
  font-size: 13px;
}

.tableau_postpermis td strong {
  color: var(--couleur-postpermis);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media screen and (max-width: 950px) {
  .tableau_postpermis th,
  .tableau_postpermis td {
    padding: 10px;
  }
}

@media screen and (max-width: 480px) {
  .tableau_postpermis th,
  .tableau_postpermis td {
    padding: 8px;
  }
}
