* {
  margin: 0;
  padding: 0;
}

body {
  background: #eee;
  display: flex;
  height: auto;
  align-items: center;
  flex-direction: column;
  padding: 2rem;
  margin: 2rem 0;
}

button {
  background-color: blue;
  border: none;
  color: #FFF;
  margin: 1rem 0 0 0;
  padding: 1rem 2rem;
}

form {
  background: #FFF;
  padding: 2rem 4rem;
  margin: 2rem;
  width: 500px;
  max-width: 100%;
}

h2,
h3 {
  border-bottom: 1px solid black;
  font-size: 1rem;
  margin: 0 0 2rem 0;
  padding: 0.5rem 0;
}

label {
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 1rem;
}

input {
  height: 2rem;
  padding: 0 0.5rem;
}

input[type="checkbox"] {
  height: 1rem;
  width: 1rem;
}

select {
  height: 2rem;
  padding: 0 0.5rem;
}

textarea {
  height: 10rem;
  padding: 0.5rem;
  width: 100%;
}

.no-margin {
  margin: 0 !important;
}

.width-auto {
  width: auto !important;
}

.container,
#result {

}

.small-input {
  width: 3rem;
}

.input-group {
  display: flex;
  flex-direction: column;
  margin: 0 0 0.5rem 0;
  position: relative;
  width: 100%;
}

.input-group.row {
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}

.input-group.hidden {
  display: none;
}

.input-group.row input {
  margin: 0;
}

.row {
  align-items: center;
  display: flex;
  gap: 1rem;
}

.align-content-bottom {
  align-items: flex-end !important;
}
.justify-content-end {
  justify-content: flex-end;
}
.justify-content-start {
  justify-content: flex-start;
}
.space-between {
  justify-content: space-between;
}

.align-items-start {
  align-items: flex-start;
}

.flex-grow-1 {
  flex: 1 1 0;
}

.text-align-right {
  text-align: right;
}

#result {
  background-color: #FFF;
  height: 100%;
  padding: 2rem;
  width: 100%;
}
.results_container {
  width: 100%;
  height: 100%;
}

.results_container h3 {
  margin: 1rem 0;
}

.results_container p {
  margin: 0.5rem 0;
}

.results_stats {
  background-color: rgba(0, 0, 0, 0.04);
  margin: 2rem 0 0 0;
  padding: 2rem;
}

.hidden {
  display: none;
}

/** Labor List **/

#labor-list p {
  margin: 1rem 0;
}

/** Buttons **/

.btn-add {
  background-color: green;
  border: 2px solid green;
  border-radius: 5%;
  color: white;
  height: 36px;
  padding: 0 1rem;
}

/** Checkboxes **/
.gst-checkbox {
  height: 36px !important;
  margin: auto !important;
}
