body {
  font-family: Arial, sans-serif;
  background-color: #1e1e1e;
  color: #f5f5f5;
  margin: 0;
  padding: 2rem;
}

h1 {
  text-align: center;
  margin-bottom: 2rem;
}

.input-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
  align-items: flex-start;
}

.input-group h1 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.input-group {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  width: 100%;
}

select, input, button {
  padding: 0.5rem;
  font-size: 1rem;
}

select, input {
  flex: 1;
}

button {
  cursor: pointer;
  background: #0078d7;
  color: white;
  border: none;
  border-radius: 4px;
}

.summary {
  text-align: left;
  margin: 2rem 0;
  font-size: 1.1rem;
}

.results {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.results h2 {
  margin-top: 2rem;
  border-bottom: 1px solid #555;
  padding-bottom: 0.5rem;
}

#pcConsoleBreakdown, #allPlatformsBreakdown {
  margin-top: 1rem;
  padding: 1rem;
  background: #2c2c2c;
  border-radius: 8px;
}

.platform-entry {
  display: flex;
  justify-content: space-between;
  padding: 0.25rem 0;
  border-bottom: 1px dashed #555;
}

.platform-entry:last-child {
  border-bottom: none;
}

#projectInfo {
  display: none;
  margin-top: 1rem;
}

#toggleInfoBtn {
  display: block;
  margin: 1rem 0;
}

p {
  text-align: left;
}

.tooltip {
  cursor: help;
  color: #0078d7;
  font-size: 0.9rem;
}
