
* {
  font-size: 28px;
}

#app {
  margin: 0 12px;
}

h1 {
  width: fit-content;
  margin: 0 8px;
  font-size: 1.2rem;
  cursor: pointer;
}

#setting-container {
  /*  */
}

.setting {
  display: flex;
  margin-top: 8px;
  align-items: center;
}

.setting.ex {
  margin-top: 4px;
}

.setting:first-of-type {
  margin-top: 0px;
}

.setting .name {
  width: 137px;
  margin-right: 8px;
  text-align: right;
}

.setting .value-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.setting .value {
  min-width: 42px;
  padding: 0 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  user-select: none;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.2s ease;
}

.setting .value.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
  background-color: #f0f0f0;
  color: #888;
  pointer-events: none;
}

.setting .value:hover {
  background-color: #81c784;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
}

.setting .value.selected {
  color: #fff;
  background-color: #4caf50;
  border-color: #388e3c;
}

#result-container {
  /*  */
}

.result {
  display: flex;
  margin-top: 8px;
  align-items: center;
}

.result:first-of-type {
  margin-top: 0px;
}

.result .name {
  width: 137px;
  margin-right: 8px;
  text-align: right;
}

#memo {
  font-size: 0.8rem;
}

