/* theme-button.css */
.theme-btn {
  background-color: var(--green-hover);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.5rem 1.25rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.theme-btn:hover {
  background-color: var(--green-base) !important;
  color: var(--white) !important;
}