.smtut-horaires {
  --forest-dark: #125d64;
  --grey-border: #d2d8d9;
  --grey-text: #657a7c;
  --white: #ffffff;

  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  box-sizing: border-box;
}

/* ─── Champs ──────────────────────────────────────── */

.smtut-horaires__fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.smtut-horaires__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.smtut-horaires__label {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: var(--forest-dark);
}

/* ─── Select ──────────────────────────────────────── */

.smtut-horaires__select-wrap {
  position: relative;
}

.smtut-horaires__select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  padding: 14px 44px 14px 16px;
  background-color: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 14px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--grey-text);
  cursor: pointer;
  box-sizing: border-box;
}

.smtut-horaires__select:focus {
  outline: 2px solid var(--forest-dark);
  outline-offset: 2px;
}

.smtut-horaires__select option:not([value=""]) {
  color: var(--forest-dark);
  font-weight: 600;
}

.smtut-horaires__chevron {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  align-items: center;
}

/* ─── Bouton ──────────────────────────────────────── */

.smtut-horaires__btn {
  display: block;
  width: 100%;
  padding: 16px;
  background-color: var(--forest-dark);
  color: var(--white);
  border: none;
  border-radius: 14px;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.15s ease;
}

.smtut-horaires__btn:hover,
.smtut-horaires__btn:focus {
  background-color: #0e4a50;
  outline: none;
}

/* ─── État vide (éditeur) ─────────────────────────── */

.smtut-horaires-empty {
  padding: 24px;
  background-color: #f5f5f5;
  color: #777;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  border: 1px dashed #ccc;
  border-radius: 8px;
}

/* ─── Responsive — côte à côte au-delà de 1024px ─── */

@media (min-width: 1025px) {
  .smtut-horaires__fields {
    flex-direction: row;
    gap: 40px;
  }

  .smtut-horaires__field {
    flex: 1;
  }

  .smtut-horaires__btn {
    width: auto;
    align-self: flex-start;
  }
}
