/* ── OS SLA Config ──────────────────────────────────────────────────────── */

#os-sla-config-page {
  padding: 0 0 48px;
}

/* ── Texto descritivo ── */
.os-sla-desc {
  margin: 0 0 20px;
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
  padding: 12px 16px;
  background: var(--background-color-secondary, #f8fafc);
  border-radius: 8px;
}

/* ── Inputs de horas na tabela ── */
#os-sla-config-page .os-table .os-input {
  width: 100px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid var(--border-light-mode);
  border-radius: 8px;
  font-size: 0.875rem;
  font-family: inherit;
  background: var(--background-color-main-light);
  color: var(--text-primary);
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

#os-sla-config-page .os-table .os-input:focus {
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
}

/* ── Botões de ação do formulário ── */
.os-sla-actions {
  margin-top: 12px;
  display: flex;
  justify-content: flex-end;
}
