.boton-limpiar {
  margin: 8px;
  padding: 8px 16px;
  background-color: #fdfdfc;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  font-weight: 500;
  transition: background-color 0.3s, box-shadow 0.3s;
  cursor: pointer;

}

.boton-limpiar:hover {
  background-color: #f4f4f4;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}