.calculator .form-group {
  margin: 24px 0rem;
}

.calculator label {
  font-size: 13px;
  font-weight: normal;
  margin-bottom: 0px;
}

.output-container {
  background-color: rgb(254, 94, 16);
  color: white;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  height: 100%;
  flex-direction: column;
  text-align: center;
  min-height: 200px;
}

#output {
  font-size: 3rem;
}

.sub-title {
  font-size: 15px;
}

.car {
  background-color: rgb(254, 94, 16);
  width: 30px;
  height: 40px;
  margin: 0px;
  margin-bottom: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: 500;
  cursor: pointer;
  border: white solid 1px;
  text-align: center;
}

.car:hover {
  transform: scale(1.1);
}

.driveway {
  position: absolute;
  width: 20px;
  height: 100%;
  margin: 0;
  top: 0;
}

.arrow-unicode::before {
  content: "\2191"; /* Unicode for upward arrow */
  position: absolute;
  left: 50%;
  top: 10%;
  transform: translate(-50%, -50%) scale(2);
  font-size: 20px;
  font-weight: bold;
}

.arrow-unicode::after {
  content: "\2193"; /* Unicode for downward arrow */
  position: absolute;
  left: 50%;
  bottom: 10%;
  transform: translate(-50%, 50%) scale(2);
  font-size: 20px;
  font-weight: bold;
}

.park {
  position: relative;
  border: solid gray 1px;
}

.car-row {
  display: flex;
}

.tab-container {
  display: flex;
  gap: 5px;
}

.calculator .tab {
  border: solid 1px gray;
  padding: 10px;
  cursor: pointer;
  font-weight: 500;
  background-color: #fff !important;
  font-size: 16px;
}

.calculator .tab:hover {
  background-color: black !important;
  color: white;
}

.calculator .tab.selected-tab {
  background-color: black !important;
  color: white !important;
}

.tab:nth-child(1) {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.tab:nth-child(2) {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.imperial {
  display: none;
}

.title {
  font-size: 30px;
}

.header-cal {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 60px;
}

#park-1 .car-row:nth-child(odd) {
  margin-bottom: 90px;
}

#park-2 .car-row .car:nth-child(even) {
  margin-right: 90px;
}

#park-2 .car-row .car:last-child {
  margin-right: 0px;
}

#calculate-btn {
  background-color: black;
  color: white;
  border: none;
  font-size: 16px;
}

#calculate-btn:hover {
  background-color: black;
  color: white;
}
#reset-btn {
  font-size: 16px;
}
#reset-btn:hover,
#reset-btn:focus {
  color: #fff;
  outline: none;
  box-shadow: none;
}
.calculator .form-select {
  padding: 6px 12px;
  font-size: 14px;
}
.pc_nav > ul {
  display: block;
}
.calculator hr {
  opacity: 1;
  border-color: #cccccc;
}
