:root {
  --nova-gold: rgb(255, 194, 11);
  --nova-green: #006633;
  --nova-page: #efefef;
  --nova-border: #cfcfcf;
  --nova-text: #101820;
}

body {
  background: var(--nova-page);
  color: var(--nova-text);
  font-family: franklin-gothic-urw, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

a {
  color: var(--nova-text);
  text-decoration: none;
}

a:hover,
a:focus {
  color: #5f4b00;
  text-decoration: underline;
}

.site-header {
  padding: 24px;
}

.logo-section svg,
.logo-section img {
  display: block;
  height: 42px;
  width: 310px;
}

.app-bar {
  background: var(--nova-gold);
  padding: .6rem 24px;
}

.app-bar h1 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

.app-bar a {
  font-size: 1rem;
  font-weight: 700;
}

.app-menu-button {
  align-items: center;
  background: transparent;
  border: 0;
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  height: 32px;
  justify-content: center;
  padding: 0;
  width: 32px;
}

.app-menu-button span {
  background: #000;
  display: block;
  height: 2px;
  width: 24px;
}

.app-menu-link {
  color: var(--nova-text);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}

.page-shell {
  padding: 52px 60px 96px;
  max-width: 1440px;
  margin: auto;
}

.calculator-panel,
.results-table,
.savings-panel {
  background: #fff;
  border: 1px solid var(--nova-border);
}

.calculator-panel {
  padding: 42px;
}

.form-label {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0;
}

form .form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19.66' height='12.141'%3E%3Cpath fill='%23b38600' d='m2.31 0 7.52 7.5L17.35 0l2.31 2.31-9.83 9.83L0 2.31Z'/%3E%3C/svg%3E");
  background-position: right .9375rem center;
  background-repeat: no-repeat no-repeat;
  background-size: 1.25rem;
  border: .0625rem solid rgba(5, 6, 7, .75);
  border-radius: 0;
  color: #050607;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  height: 2.9375rem;
  margin: .25rem 0 .5rem;
  opacity: .75;
  outline: 1px solid rgba(5, 6, 7, 0);
  padding-left: .9375rem;
  transition: outline .2s ease-out, box-shadow .2s ease-out, opacity .2s linear;
  width: 100%;
}

form .form-select:focus {
  background-color: var(--bs-body-bg);
  border-color: #8080ff;
  box-shadow: 0 0 0 .25rem rgba(0, 0, 255, .25);
  color: var(--bs-body-color);
  outline: 0;
}

.btn {
  border: 3px solid #000;
  border-radius: 0;
  font-family: inherit;
  font-size: 1.28rem;
  font-weight: 700;
  min-height: 42.5px;
  padding-left: 2.6rem;
  padding-right: 2.6rem;
}

.btn-dark {
  background: #000;
  border-color: #000;
  color: #fff;
}

.btn-outline-dark {
  background: #fff;
  border-width: 3px;
  color: #000;
}

.table {
  min-width: 980px;
}

.table > :not(caption) > * > * {
  background: #fff;
  border-color: #e3e3e3;
  padding: 24px 28px;
  vertical-align: middle;
}

.table thead th {
  background: #f7f7f7;
  border-bottom-color: var(--nova-border);
  font-size: 1.1rem;
  font-weight: 600;
  padding-bottom: 20px;
  padding-top: 20px;
}

.table tbody td {
  font-size: 1.1rem;
}

.table tfoot th,
.table tfoot td {
  background: #f7f7f7;
  border-top: 3px solid #000;
  font-size: 1.1rem;
  font-weight: 600;
}

.course-code {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.course-title {
  color: #666;
  font-size: 1.08rem;
}

.not-available {
  color: #817c75;
}

.btn-remove {
  font-size: 1.08rem;
  min-height: 54px;
  padding-left: 1.6rem;
  padding-right: 1.6rem;
}

.savings-panel {
  border: 3px solid #000;
  font-size: 1.35rem;
  margin-top: 46px;
  padding: 30px;
}

@media (max-width: 991.98px) {
  .site-header,
  .app-bar,
  .page-shell {
    padding-left: 24px;
    padding-right: 24px;
  }

  .app-bar {
    gap: 12px;
  }

  .calculator-panel {
    padding: 28px;
  }
}
