#modal-correction .modal-header button {
  margin-top: 0;
}

.choix-table {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}
@media(min-width: 1024px) {
  .choix-table {
    grid-template-columns: 1fr 1fr;
  }
}

.choix-table h5{
  grid-column: 1 / -1;
}

.verre-card {
  width: 100%;
  max-width: 450px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  display: grid;
  grid-template-columns: 120px 1fr;
}

.verre-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-color: #2196F3;
}

.verre-card.selected {
  border-color: #2196F3;
  box-shadow: 0 5px 15px rgba(33,150,243,0.3);
}

.verre-img-container {
  height: 100%;
  min-height: 100px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9f9f9;
  border-right: 1px solid #f0f0f0;
  padding: 5px;
}

.verre-img {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
}

.no-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9e9e9e;
  font-size: 16px;
}

.verre-card:not(.has-image) {
  grid-template-columns: 1fr;
}

.verre-info {
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.verre-name {
  font-weight: 600;
  font-size: 16px;
  color: #333;
  margin-bottom: 5px;
}

.verre-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.3;
}
