/* Estilos para la página de categorías */
.color-preview {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  border: 1px solid #ddd;
}

/* Personalizar el input de tipo color */
input[type="color"] {
  -webkit-appearance: none;
  border: none;
  width: 50px;
  height: 38px;
  padding: 0;
  cursor: pointer;
}

input[type="color"]::-webkit-color-swatch-wrapper {
  padding: 0;
}

input[type="color"]::-webkit-color-swatch {
  border: none;
  border-radius: 4px;
}

/* Ajustar el tamaño del texto hexadecimal */
#color-hex {
  font-family: monospace;
  font-size: 14px;
}

