textarea {
  min-height: 96px;
}

.form-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #334155;
}

.form-input {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  background: #fff;
  padding: 10px 12px;
  font-size: 16px;
  line-height: 1.5;
  outline: none;
}

.form-input:focus {
  border-color: #0d9488;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}

.master-fields {
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 16px;
}

.master-info {
  margin: 0;
  border-left: 3px solid #0d9488;
  padding: 8px 10px;
  background: #f0fdfa;
  color: #334155;
  font-size: 0.8125rem;
  line-height: 1.6;
}

.one-time-note {
  margin: 0;
  border-left: 3px solid #0d9488;
  padding: 10px 12px;
  background: #f0fdfa;
  color: #334155;
  font-size: 0.875rem;
  line-height: 1.7;
}

.weekday-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.weekday-choice {
  display: grid;
  place-items: center;
  min-height: 42px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  background: #fff;
}

.weekday-choice:has(input:checked) {
  border-color: #0d9488;
  background: #ccfbf1;
  color: #115e59;
}

.weekday-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.time-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.item-remove-button {
  flex: 0 0 auto;
  border: 1px solid #fecaca;
  border-radius: 6px;
  background: #fff;
  padding: 7px 10px;
  color: #b91c1c;
  font-size: 0.8125rem;
  font-weight: 700;
}

.item-remove-button:active {
  background: #fef2f2;
}

.item-editor-actions {
  display: flex;
  justify-content: center;
  padding: 4px 0 8px;
}

.item-add-button {
  width: 100%;
  border: 1px solid #0d9488;
  border-radius: 8px;
  background: #fff;
  padding: 11px 14px;
  color: #0f766e;
  font-size: 0.9375rem;
  font-weight: 700;
}

.item-add-button:active {
  background: #f0fdfa;
}

.empty-item-message {
  margin: 0;
  border: 1px dashed #cbd5e1;
  border-radius: 8px;
  background: #fff;
  padding: 16px;
  color: #475569;
  font-size: 0.875rem;
  line-height: 1.7;
  text-align: center;
}
