body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: white;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #d9e4ec;
  padding: 10px 20px;
}

.logo {
  height: 40px;
}

.title {
  font-size: 24px;
  color: #23567d;
}

.subtitle {
  font-size: 15px;
  color: #333;
  margin-top: 5px;
}

main {
  padding: 20px;
}

.chart-container {
  display: inline-flex;
  align-items: flex-end;
  gap: 20px;
}


.size-box-area {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  position: relative;
}

#size-box {
  background-color: #c8c8c8;
  border: 1pt solid #767676;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

#label-top {
  position: absolute;
  top: -20px;
  font-weight: regular;
  font-size: 14px;
}

#label-side {
  position: absolute;
  right: -20px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-weight: regular;
  font-size: 14px;
}

.human-area {
  width: auto;
  text-align: center;
  position: relative;
  flex-shrink: 0;
}

.human-image {
  max-height: 300px;
}

.human-label {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  color: #23567d;
  font-weight: bold;
}

.controls {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
  background-color: #23567d;
  color: white;
  padding: 10px;
}
.controls input,
.controls select {
  margin-left: 5px;
  padding: 5px;
}
.logo-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.chart-container {
  display: flex;
  justify-content: center;
}

.chart-inner {
  display: inline-flex;
  align-items: flex-end;
  gap: 20px;
}
