/* CALCULATOR STLYE START */

#horseCoatColorCalculatorSection {
  display: flex;
  justify-content: center;
  flex-direction: row;
  --select-border: #777;
  --select-focus: blue;
  --select-arrow: var(--select-border);
}
#horseCoatColorCalculatorSection #inputSection {
  display: flex;
  max-width: 100%;
}
#horseCoatColorCalculatorSection #damSection,
#horseCoatColorCalculatorSection #sireSection {
  padding-right: 1em;
}
#horseCoatColorCalculatorSection #offspringProbabilitiesSection {
  max-width: 50%;
  justify-content: center;
}
@media (max-width: 1024px) {
  #horseCoatColorCalculatorSection {
    flex-direction: column;
  }
  #horseCoatColorCalculatorSection #inputSection,
  #horseCoatColorCalculatorSection #offspringProbabilitiesSection {
    max-width: 50%;
  }
}
#horseCoatColorCalculatorSection h1,
#horseCoatColorCalculatorSection label,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}
#horseCoatColorCalculatorSection #damErrorSection,
#sireErrorSection {
  color: #dc3545;
  max-width: 30ch;
  display: block;
}
#horseCoatColorCalculatorSection *,
#horseCoatColorCalculatorSection ::after,
#horseCoatColorCalculatorSection ::before {
  box-sizing: border-box;
}
#horseCoatColorCalculatorSection select {
  border: 1px solid var(--select-border);
  border-radius: 0.25em;
  padding: 0.25em 0.5em;
  margin: 0;
  width: 100%;
  min-width: 15ch;
  max-width: 30ch;
  font-family: inherit;
  font-size: inherit;
  line-height: 1.1;
  outline: 0;
  cursor: pointer;
  background-color: #fff;
  background-image: linear-gradient(to top, #f9f9f9, #fff 33%);
}
#horseCoatColorCalculatorSection select::-ms-expand {
  display: none;
}
#horseCoatColorCalculatorSection .hccc-container {
  display: block;
  position: relative;
  padding-left: 35px;
  padding-bottom: 20px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#horseCoatColorCalculatorSection .hccc-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
#horseCoatColorCalculatorSection .hccc-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}
#horseCoatColorCalculatorSection .hccc-container:hover input ~ .hccc-checkmark {
  background-color: #ccc;
}
#horseCoatColorCalculatorSection
  .hccc-container
  input:checked
  ~ .hccc-checkmark {
  background-color: #495525;
  background-image: linear-gradient(to top, #495525, #939e71);
}
#horseCoatColorCalculatorSection .hccc-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
#horseCoatColorCalculatorSection
  .hccc-container
  input:checked
  ~ .hccc-checkmark:after {
  display: block;
}
#horseCoatColorCalculatorSection .hccc-container .hccc-checkmark:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: 0 0;
}
#horseCoatColorCalculatorSection .hccc-collapsible {
  cursor: pointer;
  width: 120%;
  border: none;
  text-align: left;
  outline: 0;
  background: 0 0;
  padding: 0;
  font-size: 1.2em;
  font-weight: 700;
  margin-left: 10px;
}
#horseCoatColorCalculatorSection .hccc-content {
  background-color: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  margin-left: 10px; /* Move 10px to the right */
  
}
#horseCoatColorCalculatorSection .hccc-content p {
  margin: 0;
  margin-left: 10px; /* Move 10px to the right */
}
#horseCoatColorCalculatorSection .hccc-collapsible:after {
  content: " \025B2";
}
#horseCoatColorCalculatorSection .hccc-active:after {
  content: " \025BC";
}

/* CALCULATOR STLYE END */

.section-heading {
    text-align: center; /* Center the text */
    font-size: 2em; /* Make the font size bigger */
}

#elapsedTime {
    margin-left: 10px; /* Move 10px to the right */
}
