/* Limpieza de datos — Odoo Data Cleaning empty states / lists */
.dc-odo-toolbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.dc-odo-toolbar__title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
}
.dc-odo-list-wrap {
  position: relative;
  min-height: 18rem;
}
.dc-odo-table th.dc-odo-check,
.dc-odo-table td.dc-odo-check {
  width: 2.25rem;
}
.dc-odo-row-actions {
  display: flex;
  gap: 0.35rem;
  justify-content: flex-end;
  white-space: nowrap;
}
.dc-odo-inline-form {
  display: inline;
  margin: 0;
}
.dc-odo-empty {
  position: absolute;
  inset: 3.5rem 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1rem;
  pointer-events: none;
}
.dc-odo-empty .btn {
  pointer-events: auto;
  margin-top: 0.75rem;
}
.dc-odo-empty__icon {
  margin-bottom: 0.75rem;
  line-height: 0;
}
.dc-odo-empty__title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 600;
}
.dc-odo-empty__hint {
  margin: 0;
  color: var(--o-gray-600, #6b7280);
  max-width: 28rem;
}
.dc-odo-stub__body {
  max-width: 40rem;
}
.dc-odo-stub__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

/* FORCE SFE blue empty-state disc (CSS ::before — not Odoo purple SVG) */
.dc-odo-empty__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 0.75rem;
  line-height: 0;
}
.dc-odo-empty__icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #007BFF !important;
  z-index: 0;
}
.dc-odo-empty__icon svg {
  position: relative;
  z-index: 1;
  display: block;
}
.dc-odo-empty__icon svg circle[r="2"] {
  fill: #007BFF !important;
}
.dc-odo-empty__icon svg path {
  stroke: #007BFF !important;
}
