.noto-sans-thai-looped {
  font-family: "Noto Sans Thai Looped", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.andika-regular {
  font-family: "Andika", sans-serif;
  font-weight: 400;
  font-style: normal;
}

:root {
  /* Core palette */
  --brand-primary: #B9A7D8;
  --brand-primary-strong: #7E6AAE;
  --brand-secondary: #D6A1A9;
  --brand-secondary-strong: #B97A85;
  --brand-accent: #F2C6CC;

  /* Layout */
  --background-default: #FAF8FC;
  --background-surface: #F1EEF7;
  --border-default: #DDD6E8;

  /* Text */
  --text-primary: #2E2438;
  --text-secondary: #5F5670;
  --text-on-brand: #FFFFFF;

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Noto Sans Thai Looped", sans-serif;
  background-color: var(--background-default);
  color: var(--text-primary);
	font-size: 16px;
  line-height: 1.6;
}

header {
  background: linear-gradient(
    90deg,
    var(--brand-primary-strong),
    var(--brand-primary)
  );
  color: white;
  padding: 0.5rem 2rem;
}

header h1 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

main, footer {
  max-width: 900px;
  margin: 2.5rem auto;
  padding: 0 1.5rem;
}

.card {
  background-color: white;
  padding: 0.9rem;: var(--background-surface);
  border: 1px solid var(--border-default);
  border-radius: 10px;
  padding: 1.75rem;
  margin-bottom: 1.75rem;
}

.card h2 {
  margin-top: 0;
  color: var(--brand-primary-strong);
}

/* Examples */
.example {
  background-color: white;
  padding: 0.9rem;: white;
  border-left: 5px solid var(--brand-primary);
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
}

.example .target {
  font-size: 1.25rem;
  font-weight: 600;
}

.example .gloss {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Vocabulary */
.vocab-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.vocab {
  background-color: white;
  padding: 0.9rem;
  border-radius: 8px;
  border: 1px solid var(--border-default);
}

.vocab strong {
  color: var(--brand-primary-strong);
}

/* Notes */
.grammar {
  border-left: 5px solid var(--brand-secondary);
  background-color: white;
  padding: 0.9rem;: #FFF6F7;
}

.culture {
  border-left: 5px solid var(--brand-secondary-strong);
  background-color: white;
  padding: 0.9rem;: #FDF1F3;
}

/* Quiz */
.quiz-option {
  background-color: white;
  padding: 0.9rem;: white;
  padding: 0.85rem;
  border-radius: 8px;
  border: 1px solid var(--border-default);
  margin-bottom: 0.6rem;
}

.quiz-option.correct {
  border-color: var(--brand-primary);
  background-color: white;
  padding: 0.9rem;: #EFEAF7;
}

.quiz-option.incorrect {
  border-color: var(--brand-secondary-strong);
  background-color: white;
  padding: 0.9rem;: #F8E6EA;
}

/* Buttons */
button {
  background-color: var(--brand-primary-strong);
  padding: 0.9rem;
  color: white;
  border: none;
  padding: 0.65rem 1.1rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
}

button.secondary {
  background-color: white;
  border: 1px solid var(--brand-secondary-strong);
  color: var(--brand-secondary-strong);
  padding: 0.9rem;
}
footer {
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

header {
	display: flex;
	justify-content: space-between;
}

header a {
	color: var(--text-on-brand);
}

ul {
  list-style: none; /* Removes default markers */
  padding-left: 0; /* Removes default padding */
}

li {
  position: relative; /* Needed for absolute positioning of the custom bullet */
  padding-left: 20px; /* Space for the custom bullet */
}

li::before {
  content: "๏"; /* Inserts a standard bullet character */
  color: var(--brand-primary-strong); /* Custom color for the bullet */
  position: absolute;
  left: 0; /* Positions the bullet at the start of the padding area */
  top: 0;
}


.buttons {
	display: flex;
	justify-content: space-between;
}

a {
	color: var(--brand-primary-strong);
	font-weight: bold;
	text-decoration: none;
}

         select {
			 font-size: 16px;
		 }

.hidden {
	visibility: hidden
}

.none {
	display: none;
}	

