body {
  background-color: #f0f4f8;
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

.brat-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

#brat-tool {
  font-family: 'Chewy', cursive;
}

.brat-container {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 100%;
  text-align: center;
}

.brat-title {
  font-size: 32px;
  margin-bottom: 20px;
}

.brat-input {
  width: 100%;
  padding: 10px;
  font-size: 20px;
  border: 2px solid pink;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: center;
}

.brat-sizes label,
.brat-bg-colors label {
  font-weight: bold;
  display: block;
  margin-bottom: 8px;
}

.brat-sizes select,
.brat-options select,
.brat-custom-size input {
  padding: 10px;
  margin: 5px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 16px;
}

.brat-custom-size {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.color-buttons button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

.brat-options {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}

canvas {
  border: 3px dashed #8CD000;
  margin-bottom: 20px;
  width: 100%;
  height: auto;
}

button {
  background-color: #ff69b4;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  margin: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #e055a1;
}