/* Admin styling */
/* Option row styling */

/* Frontend calculator styling */
#stepCounter {
  margin-bottom: 10px;
  font-weight: bold;
}

/* Fieldset styling */
#priceCalcFieldset {
  padding: 0px;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Legend styling */
#priceCalcFieldset legend {
  padding-bottom: 20px;
  font-weight: bold;
  text-align: center;
}

/* Options styling */
#priceCalcOptions {
  display: flex;
  flex-direction: row;
  column-gap: 10px;
  margin-bottom: 20px;
}

#priceCalcOptions input {
  display: none;
}

#priceCalcOptions label {
  display: inline-block;
  border: 1px solid #000000;
  border-radius: 5px;
  padding: 10px 15px;
  user-select: none;
  cursor: pointer;
  transition: 0.2s ease;
  align-content: center;
  text-align: center;
  height: 6rem;
  width: 10rem;
}

#priceCalcOptions label:hover {
  border: 1px solid #f50014;
  background-color: #f50014;
  color: #ffffff;
  opacity: 50%;
}

#priceCalcOptions input[type="Radio"]:checked + label {
  border: 1px solid #f50014;
  background-color: #f50014;
  color: #ffffff;
}

#priceCalcOptions input[type="Radio"]:checked + label:hover {
  opacity: 100%;
}

/* Price styling */
#priceCalcTotal {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Button styling */
#priceCalcNav {
  margin-bottom: 10px;
}

#priceCalcFieldset button {
  background-color: #ffffff;
  border: 1px solid #000000;
  border-radius: 5px;
  margin-top: 10px;
  padding: 10px 15px;
  cursor: pointer;
  transition: 0.2s ease;
}

#priceCalcFieldset button:hover {
  background-color: #000000;
  color: #ffffff;
}

#priceCalcFieldset button:focus {
  outline: none;
}

/* Email estimate styling */
#emailEstimateContainer {
  margin-top: 1em;
}

#estimateEmail {
  margin-right: 0.5em;
  padding: 10px 15px;
  border: 1px solid #000000;
  border-radius: 5px;
}

#estimateEmail:focus {
  outline-style: none;
}

#emailEstimateMsg {
  margin-left: 1em;
  color: green;
  display: none;
}

/* Price class styling */
#totalPrice {
  font-size: 1.2em;
  color: #f50014;
}

/* Options class styling */
.options {
  margin-top: 1em;
}

.option-row {
  margin-bottom: 0.5em;
}
