/* Conjugate – custom styles */

@font-face {
  font-family: 'Noto Sans';
  src: url('../fonts/noto-sans/latin.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Noto Sans';
  src: url('../fonts/noto-sans/latin.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

body {
  font-family: 'Noto Sans', system-ui, sans-serif;
}

/* Practice cards */
.card {
  border-radius: 0.5rem;
}

/* Clickable stat panels on overview page */
a.stat-panel {
  transition: filter 0.15s, transform 0.15s;
  display: block;
}
a.stat-panel:hover {
  filter: brightness(0.93);
  transform: translateY(-2px);
  cursor: pointer;
}

/* Answer inputs */
.answer-input {
  font-size: 1rem;
  letter-spacing: 0.02em;
}

/* Verb header */
h2 .text-primary {
  font-size: 1.6rem;
}

/* Table inside cards: no outer border */
.card .table {
  margin-bottom: 0;
}
.card .table td {
  border-color: rgba(0, 0, 0, 0.05);
}
