body {
  font-family: "Segoe UI", sans-serif;
  background: #18181b;
  color: #f4f4f5;
  margin: 0;
  padding: 1rem;
}

.container {
  max-width: 500px;
  margin: 0 auto;
  background: #27272a;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 0 10px #0006;
}

h1 {
  text-align: center;
  margin-bottom: 1rem;
}

.tabs {
  display: flex;
  justify-content: space-around;
  margin-bottom: 1rem;
}

.tab-button {
  background: #3f3f46;
  color: #f4f4f5;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
}

.tab-button.active {
  background: #71717a;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

#notesArea {
  width: 100%;
  height: 200px;
  background: #3f3f46;
  color: #f4f4f5;
  border: none;
  border-radius: 8px;
  padding: 0.5rem;
  resize: vertical;
}

.initiative-controls {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
}

#initiativeInput {
  flex: 1;
  padding: 0.5rem;
  border-radius: 6px;
  border: none;
}

#initiativeList {
  list-style: none;
  padding: 0;
  margin: 0;
}

#initiativeList li {
  background: #3f3f46;
  margin-bottom: 0.5rem;
  padding: 0.5rem;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
}

.dice-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.dice-buttons button {
  background: #3f3f46;
  color: #f4f4f5;
  border: none;
  border-radius: 6px;
  padding: 0.5rem 0.8rem;
  cursor: pointer;
}

#diceResult {
  margin-top: 1rem;
  text-align: center;
  font-size: 1.5rem;
}
