body {
  background-color: #201018;
  font: 16px Roboto, sans-serif;
  margin: 0;
  padding: 20px;
  min-height: 100vh;
}

footer {
  color: #fff0d5;
  text-align: center;
  font: 12px Roboto, sans-serif;
}

h1 {
  color: #fff0d5;
  text-align: center;
}

p {
  color: #fff0d5;
  font: 20px Roboto, sans-serif;
}

.dropdown-container {
  margin-bottom: 20px;
}

label {
  color: #fff0d5;
  font: 16px Roboto, sans-serif;
  display: block;
}

select {
  background-color: #333;
  color: #fff0d5;
  border: 2px solid #feea13;
  padding: 10px;
  font: 16px Roboto, sans-serif;
  border-radius: 5px;
  width: 300px;
}

.textbox-container {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-width: 400px;
  flex-shrink: 0;
}

textarea {
  background-color: #333;
  color: #fff0d5;
  border: 2px solid #feea13;
  padding: 10px;
  font: 16px Roboto, sans-serif;
  border-radius: 5px;
  width: 400px;
  height: 100px;
  resize: vertical;
}

.main-controls-row {
  display: flex;
  gap: 20px;
  margin: 20px 0;
  align-items: flex-start;
  flex-wrap: wrap;
  flex: 1;
}

.top-section {
  display: flex;
  gap: 20px;
  margin: 20px 0;
  align-items: flex-start;
  flex-wrap: nowrap;
}

.character-clothes-row {
  display: flex;
  gap: 20px;
  margin: 20px 0;
  align-items: flex-start;
  flex-wrap: wrap;
}

.counter-container {
  background-color: #301822;
  padding: 15px;
  border-radius: 8px;
  border: 2px solid #feea13;
  flex: 0 0 auto;
  width: fit-content;
}

.counter-item {
  margin: 15px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.counter-controls {
  display: flex;
  align-items: center;
  gap: 5px;
}

.counter-btn {
  background-color: #feea13;
  color: #201018;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 3px;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin: 0;
}

.counter-btn:hover {
  background-color: #e6d311;
}

.counter-value {
  color: #fff0d5;
  font: 16px Roboto, sans-serif;
  width: 30px;
  height: 30px;
  text-align: center;
  background-color: #333;
  border: 1px solid #feea13;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.checkbox-container {
  background-color: #301822;
  padding: 15px;
  border-radius: 8px;
  border: 2px solid #feea13;
  width: fit-content;
}

.checkbox-item {
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

input[type="checkbox"] {
  transform: scale(1.2);
  accent-color: #feea13;
  cursor: pointer;
}

.checkbox-label {
  color: #fff0d5;
  font: 16px Roboto, sans-serif;
  cursor: pointer;
}

button {
  background-color: #d18274;
  color: #201018;
  border: none;
  padding: 10px 20px;
  font: 16px Roboto, sans-serif;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}

button:hover {
  background-color: #b05457;
}

#gender {
  color: #fff0d5;
  width: 60px;
}

#copy-to-clipboard {
  width: 50%;
}

.character-container {
  background-color: #2a1520;
  padding: 15px;
  border-radius: 8px;
  border: 2px solid #ff6b35;
  margin: 10px 0;
}

.character-container h3 {
  color: #fff0d5;
  margin-top: 0;
  margin-bottom: 15px;
}