body {
  font-family: "Noto Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 18px;
  line-height: 1.8;
  background-color: #f0f8ff;
  color: #2c2c2c;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  box-sizing: border-box;
  padding: 20px;
}

.container {
  background-color: #ffffff;
  padding: 20px 40px 40px 40px;
  border-radius: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 100%;
  text-align: center;
}

h1 {
  color: #006666;
  font-size: 24px;
  border-bottom: 2px dashed #aaddaa;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.intro {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
}

.selection-area {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.selector {
    flex: 1;
}

label {
    font-size: 1.1em;
    color: #008080;
}

select, button {
  font-family: "Noto Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 16px;
  margin-top: 10px;
  padding: 8px;
  border-radius: 10px;
  border: 1px solid #aaddaa;
  width: 100%;
  box-sizing: border-box;
}

select {
    background-color: #f0fff0;
}

button {
  background-color: #008080;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  padding: 10px 20px;
  width: auto;
  display: inline-block;
  margin: 10px 5px 0 5px;
}

#show-button:hover {
  background-color: #006666;
}

#reset-button {
  background-color: #ccf5ff;
  border: none;
  color: #004466;
  font-size: 1em; /* Adjusted to match base button size */
}

#reset-button:hover {
  background-color: #b8eaf8;
}

#result {
  margin-top: 30px;
  padding: 20px;
  background-color: #e6ffe6;
  border: 1px solid #99cc99;
  border-radius: 10px;
  text-align: left;
  line-height: 1.7;
  display: none; /* Initially hidden */
  font-size: 18px;
}