.table-container {
  width: 80%;
  margin: 30px auto;
}

.table {
  border-radius: 8px;
  overflow: hidden; 
  /* border-collapse: separate;
  border-spacing: 0;
  background-color: white; */
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.10); Ombre légère */
}

thead tr:first-child {
  border-radius: 8px 8px 0 0;
}

thead tr:first-child th:first-child {
  border-top-left-radius: 8px;
}

thead tr:first-child th:last-child {
  border-top-right-radius: 8px;
}

/* Pour les coins du bas du tableau */
tbody tr:last-child td:first-child {
  border-bottom-left-radius: 8px;
}

tbody tr:last-child td:last-child {
  border-bottom-right-radius: 8px;
}

.admin-thumbnail {
  max-width: 50px;
  border-radius: 4px;
  max-height: 50px;
  object-fit: cover;
  cursor: pointer;
}

.no-image {
  color: #999;
  font-style: italic;
  font-size: 0.9em;
}

.light_modal_content {
  background: none;
  border: none;
}

.light_modal_close {
  position: absolute;
  right: -30px;
  top: -30px;
  color: white;
  font-size: 30px;
  background: none;
  border: none;
  cursor: pointer;
}

.light_modal_image {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.message_alert_table{
  width: 70%;
  margin: 30px auto;
}