body {
  font-family: 'Karla';
  background: #0f1115;
  color: #eaeaea;
  text-align: center;
  padding: 2rem;
}

input {
  width: 420px;
  padding: 10px;
  margin: 10px;
  background: #1c1f26;
  color: white;
  border: 1px solid #333;
}

button {
  padding: 10px 20px;
  cursor: pointer;
}

pre {
  text-align: left;
  margin: 20px auto;
  width: 80%;
  background: #16191f;
  padding: 15px;
  overflow-x: auto;
}

.logo {
  width: 120px;
}

#suitDock {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 60px;
}

.suit-btn, .parts-content img.item {
  width: 96px;
  height: 96px;
  opacity: 0.6;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.suit-btn:hover, .parts-content img.item:hover {
  transform: scale(1.1);
  opacity: 1;
}

.suit-btn.selected, .parts-content img.item.selected {
  opacity: 1;
  outline: 2px solid rgba(255,255,255,0.5);
  border-radius: 8px;
}

#partsContainer {
  display: none;
  background: #181a20;
  border-radius: 12px;
  padding: 10px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.parts-header, .stats-header {
  display: flex;
  justify-content: center;
  align-items: center;
}

.parts-header h2 {
  margin-top: 10px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.parts-content, .stats-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.stats-content img.item {
  width: 96px;
  height: 96px;
  height: auto;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.parts-content img.item:hover {
  transform: scale(1.1);
}

#statsContainer {
  display: none;
  justify-content: center;
  width: 100%;
  padding: 10px;
  margin-top: 50px;
}

.stats-header h3 {
  margin-top: 10px;
  margin-bottom: 0px;
  padding-bottom: 10px;
}

.stat-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: fit-content;
  max-width: 35%;
  height: fit-content;
  border-radius: 5px;
  background: #181a20;
  padding: 10px;
  margin-left: 10px;
  margin-right: 10px;
  padding-left: 20px;
  padding-right: 20px;
}

.stats-values {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 14px;
  font-weight: thin;
  color: #aaa5;
  user-select: none;
  width: fit-content;
}

.stats-values i {
  font-style: normal;
  font-weight: bold;
  user-select: text;
}

.stats-values i:nth-of-type(1) {
  color: #fff;
}

.stats-values i:nth-of-type(2) {
  color: #ffe8a6;
}

.stats-values i:nth-of-type(3) {
  color: #ffd255;
}

.stats-values i:nth-of-type(4) {
  color: #fb0;
}

.stats-content {
  flex-flow: row wrap;
  margin-top: 10px;
}
