:root {
  --bg-primary: #ffffff;
  --bg-surface: #e5e7eb;
  --bg-elevated: #d1d5db;
  --accent: #38bdf8;
  --text-primary: #111827;
  --text-secondary: #4b5563;
  --green: #10b981;
  --red: #ef4444;
}

html,
body {
  height: auto;
  min-height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  justify-content: center;
  text-align: center;
  background-color: var(--bg-primary);
  color: var(--text-primary);
}

body.darkmode {
  --bg-primary: #0f172a;
  --bg-surface: #1e293b;
  --bg-elevated: #334155;
  --accent: #38bdf8;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
}

.page-container {
  width: 90%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.content-box {
  min-height: 200px;
  max-height: 500px;
  width: min(90%, 800px);
  overflow-y: auto;
  box-sizing: border-box;
  white-space: pre-wrap;
  background-color: var(--bg-surface);
  color: var(--text-primary);
  border: 2px solid var(--text-secondary);
  border-radius: 5px;
  padding: 10px;
}

#question-box {
  font-size: 20px;
}

.footer {
  height: 100px;
}

.artist-item {
  white-space: normal;
}

summary,
input {
  cursor: pointer;
}

input[type="checkbox"] {
  width: 20px;
  height: 20px;
}

#generate-btn {
  font-size: 20px;
}
