/* Generated by the Appearance settings — do not edit manually */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --accent: #4ade80;
  --accent-dark: #16a34a;
  --font-family: 'Inter', system-ui, sans-serif;
  --btn-radius: 0.75rem;
}

body {
  font-family: var(--font-family);
}

.theme-btn {
  background-color: var(--accent);
  border-radius: var(--btn-radius);
  transition: background-color 0.15s;
}
.theme-btn:hover {
  background-color: var(--accent-dark);
}

.theme-accent {
  color: var(--accent);
}

.theme-card:hover {
  border-color: var(--accent);
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  border-color: var(--accent) !important;
  outline: none;
}
