/* maestros/cuentas.css */

#cuentasScreen .editable-select {
  width: 100%;
  padding: 2px 8px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background-color: #ffffff;
  color: var(--text);
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  box-sizing: border-box;
  cursor: pointer;
}

#cuentasScreen .editable-select option {
  background-color: #ffffff;
  color: var(--text);
}

#cuentasScreen .editable-select:focus {
  outline: none;
  border-color: var(--accent-2);
  box-shadow: 0 0 0 2px rgba(106, 132, 168, 0.25);
}

#cuentasScreen .editable-select:disabled {
  background-color: #e8e8e8;
  color: var(--muted);
  cursor: not-allowed;
  border-color: #cccccc;
}

#cuentasScreen .activo-cell {
  text-align: center;
}

#cuentasScreen .activo-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 20px;
}

#cuentasScreen .activo-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

#cuentasScreen .activo-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #4a5568;
  border-radius: 24px;
  transition: background-color 0.2s ease;
}

#cuentasScreen .activo-slider::before {
  content: "";
  position: absolute;
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background-color: #ffffff;
  border-radius: 50%;
  transition: transform 0.2s ease;
}

#cuentasScreen .activo-toggle input:checked + .activo-slider::before {
  transform: translateX(24px);
}

#cuentasScreen .activo-toggle input:checked + .activo-slider {
  background-color: var(--accent-2);
}

#cuentasScreen .activo-toggle input:checked + .activo-slider::before {
  transform: translateX(20px);
}

#cuentasScreen .activo-toggle input:focus + .activo-slider {
  box-shadow: 0 0 0 2px rgba(74, 111, 165, 0.4);
}
