.gpro-horaires,
.gpro-horaires-public {
  box-sizing: border-box;
  width: 100%;
}

.gpro-horaires *,
.gpro-horaires-public * {
  box-sizing: border-box;
}

.gpro-horaires-toolbar,
.gpro-horaires-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 10px 0;
}

.gpro-horaires-editor {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.gpro-horaires-day {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.gpro-horaires-day-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  background: #f8fafc;
}

.gpro-horaires-day-name {
  font-size: 15px;
}

.gpro-horaires-mode-label select {
  min-width: 155px;
  max-width: 100%;
  min-height: 38px;
  border-radius: 8px;
}

.gpro-horaires-ranges {
  padding: 12px 14px;
}

.gpro-horaires-range {
  display: grid;
  grid-template-columns: minmax(110px, .75fr) minmax(140px, 1fr) auto minmax(140px, 1fr);
  align-items: end;
  gap: 10px;
}

.gpro-horaires-range + .gpro-horaires-range {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed #e5e7eb;
}

.gpro-horaires-range[hidden],
.gpro-horaires-ranges[hidden] {
  display: none !important;
}

.gpro-range-title {
  align-self: center;
  font-weight: 600;
  color: #475569;
}

.gpro-horaires-range label {
  display: grid;
  gap: 4px;
  margin: 0;
}

.gpro-horaires-range label > span {
  font-size: 12px;
  color: #64748b;
}

.gpro-horaires input[type="time"] {
  width: 100%;
  min-width: 0;
  min-height: 42px;
  padding: 6px 8px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #fff;
}

.gpro-time-separator {
  align-self: end;
  padding-bottom: 10px;
  color: #64748b;
}

.gpro-horaires-warning {
  color: #b42318;
  font-weight: 600;
  margin-top: 12px;
}

#gpro-save-msg {
  transition: opacity .25s ease;
  opacity: 0;
  font-weight: 600;
}

#gpro-duplicate,
#gpro-save-horaires {
  min-height: 40px;
}

/* Affichage public : une seule colonne horaires, lisible en desktop comme en mobile. */
.gpro-horaires-public table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 10px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
}

.gpro-horaires-public th,
.gpro-horaires-public td {
  padding: 10px 12px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid #e5e7eb;
}

.gpro-horaires-public th {
  background: #f8fafc;
  font-weight: 700;
}

.gpro-horaires-public tr:last-child td {
  border-bottom: 0;
}

.gpro-horaires-public th:first-child,
.gpro-horaires-public td:first-child {
  width: 32%;
  font-weight: 600;
}

.gpro-horaires-public .gpro-horaires-closed {
  color: #64748b;
  font-style: italic;
}

@media (max-width: 640px) {
  .gpro-horaires-day-head {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .gpro-horaires-mode-label select {
    width: 100%;
  }

  .gpro-horaires-range {
    grid-template-columns: 1fr auto 1fr;
    gap: 8px;
  }

  .gpro-range-title {
    grid-column: 1 / -1;
  }

  .gpro-horaires input[type="time"] {
    min-height: 44px;
  }

  .gpro-horaires-public th,
  .gpro-horaires-public td {
    padding: 9px 10px;
  }

  .gpro-horaires-public th:first-child,
  .gpro-horaires-public td:first-child {
    width: 34%;
  }
}

@media (max-width: 380px) {
  .gpro-horaires-range {
    grid-template-columns: 1fr;
  }

  .gpro-time-separator {
    display: none;
  }
}
