.my-button.link {
  color: #374151;
  /* text-gray-700 */
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  /* rounded */
  transition: color 0.2s;
  font-weight: 600;
  /* font-semibold */
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.my-button.link:hover {
  color: #ea580c;
  /* text-orange-600 */
}
.my-input {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  outline: none;
}
.my-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px #fdba74;
  border-color: #fdba74;
}
