/* maestros/cuentas.css */

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

#cuentasScreen .editable-select option {
  background-color: #0d1e34;
  color: #f4f7ff;
}

#cuentasScreen .editable-select:focus {
  outline: none;
  border-color: #5a82b8;
  box-shadow: 0 0 0 2px rgba(74, 111, 165, 0.25);
}

#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: #4a6fa5;
}

#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);
}
