.byggecalc {
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
  padding: 15px;
  display: flex;
  flex-direction: column;
  max-width: 640px;
  text-align: center;
  margin: 0 40px;
}

.byggecalc h2 {
  font-size: 1.4rem;
}

.byggecalc p {
  font-size: 16px;
  margin-bottom: 15px;
}

.byggecalc label {
  font-weight: 600;
  margin-top: 1rem;
  display: block;
  font-size: 16px;
  margin-bottom: 5px;
  text-align: left;
}

.byggecalc select,
.byggecalc input[type="number"] {
  border: 1px solid #ccc;
  font-size: 16px;
  padding: 10px;
  width: 100%;
  border-radius: 0.5rem;
}

.byggecalc input:focus {
  outline: none;
}

.byggecalc button[type="submit"] {
  align-items: center;
  background-color: #0c58a5;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
  margin-top: 2rem;
  min-height: 3rem;
  padding: 10px;
  text-decoration: none !important;
  transition: all 250ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: baseline;
  width: 100%;
}

.byggecalc button[type="submit"]:hover {
  background-color: #0c58a5;
  filter: brightness(125%);
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
  color: #fff;
}

.byggecalc #buildcalculator-status {
  font-size: 16px;
  margin-top: 20px;
  text-align: center;
  border-radius: 0.5rem;
}

#status-box {
  background-color: #fbfbfd;
  text-align: center;
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
}

#status-box h3 {
  padding-top: 1rem;
  font-weight: 400;
}

#status-box h4 {
  margin-top: 1rem;
}

#status-box #price {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

#status-box #notice {
  font-size: 0.8rem;
}

#status-box table {
  width: 100%;
}

#status-box table tr {
  display: flex;
  justify-content: space-between;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 5px 10px;
}
#status-box table tr:nth-child(odd) {
  background-color: #f0f2f5;
}

.bold-currency {
  font-weight: 500;
}

.total_cost {
  font-size: 1rem;
}

/* Media query */
@media (min-width: 640px) {
  .byggecalc h2 {
    font-size: 1.8rem;
  }

  #status-box #price {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .total_cost {
    font-size: 1.8rem;
  }
}
