/* Estilos para el select personalizado de atributos */
.custom-select-atributo, .custom-select-operador, .custom-select-nivel {
  position: relative;
  font-size: 1em;
  min-width: 120px;
  max-width: 220px;
  width: auto;
  display: inline-block;
  margin-right: 4px;
} 
.custom-select-selected {
  color: #fff !important;

  background: #eee;
  border-radius: 5px;
  padding: 6px 12px;
  cursor: pointer;
  min-width: 120px;
  border: 1px solid #bbb;
  display: flex;
  align-items: center;
  gap: 6px;
}
.custom-select-items {
  position: absolute;
  background: #fff;
  border: 1px solid #bbb;
  border-radius: 5px;
  z-index: 99;
  left: 0;
  margin-top: 2px;
  box-shadow: 0 2px 8px #0002;
  max-height: 270px;
  overflow-y: auto;
  min-width: 120px;
  max-width: 220px;
  width: max-content;
}
.custom-select-item {
  padding: 7px 14px;
  cursor: pointer;
  color: #fff;
  font-weight: 500;
  border-radius: 3px;
  margin: 2px 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.custom-select-item:hover, .custom-select-item.selected {
  outline: 2px solid #222;
  filter: brightness(1.12);
}
.custom-select-atributo .grupo-mental { background: #7b1fa2; }
.custom-select-atributo .grupo-fisico { background: #0277bd; }
.custom-select-atributo .grupo-ataque { background: #c62828; }
.custom-select-atributo .grupo-defensa { background: #388e3c; }
.custom-select-atributo .grupo-otro { background: #bbb; color: #222; }

/* Custom select para operador */
.custom-select-operador .custom-select-selected,
.custom-select-operador .custom-select-item {
  color: #fff !important;
  font-weight: 500;
}
.custom-select-operador .operador-gte { background: #0277bd !important; }
.custom-select-operador .operador-eq { background: #7b1fa2 !important; }
.custom-select-operador .operador-lte { background: #c62828 !important; }

.custom-select-nivel .custom-select-selected,
.custom-select-nivel .custom-select-item {
  color: #fff !important;
  font-weight: 500;
}
.custom-select-nivel .nivel-aceptable { background: #bdb76b !important; }
.custom-select-nivel .nivel-bueno { background: #2196f3 !important; }
.custom-select-nivel .nivel-muybueno { background: #7b1fa2 !important; }
.custom-select-nivel .nivel-elite { background: #c62828 !important; }
.custom-select-nivel .nivel-leyenda { background: #388e3c !important; }
.custom-select-nivel .nivel- { background: #bbb !important; color: #222 !important; }

.custom-select-arrow {
  margin-left: auto;
  font-size: 1.2em;
  color: #444;
}
