/* css styles */
.btn-clean {
  background: none;
  border: none;
  color: #007bff;
  padding: 0.5em 1em;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn-clean:hover {
  background-color: #cceeff; /* soft sky blue */
  text-decoration: none;
  color: #007bff;
}
