/** Button override colors */
/*nav.navbar {
    background: linear-gradient($primary, $white)
}*/
/** Custom Helper Class styles */
.red-border {
  border-color: #DC3545 !important;
}

/** Global Button Styles - Matching Figma Design */
/** These styles load last (after Bootstrap and AdamsTaxUIstyle) so they naturally override without !important */
.btn {
  font-family: Mulish;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.32px;
  line-height: 22px;
  padding: 8px 16px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  height: auto;
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn:hover {
  font-weight: 500;
}
.btn.btn-primary {
  background-color: #007BBD;
  color: #FFFFFF;
  border: none;
}
.btn.btn-primary:hover {
  background-color: #0d6efd;
  color: #FFFFFF;
}
.btn.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn.btn-continue {
  background-color: #1C9ACB;
  color: #FFFFFF;
  border: none;
}
.btn.btn-continue:hover {
  background-color: #0d6efd;
  color: #FFFFFF;
}
.btn.btn-continue:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn.btn-outline {
  border: 1px solid #D1D1D1;
  padding: 8px 16px;
  border-radius: 6px;
}
.btn.btn-outline:hover {
  background-color: rgba(0, 123, 189, 0.1);
  color: #007BBD;
  border-color: #007BBD;
}
.btn.btn-outline:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn.btn-outline-primary {
  border: 1px solid #007BBD;
  color: #007BBD;
  background-color: transparent;
  padding: 8px 16px;
  border-radius: 6px;
}
.btn.btn-outline-primary:hover {
  background-color: rgba(0, 123, 189, 0.1);
  color: #007BBD;
  border-color: #007BBD;
}
.btn.btn-outline-primary:disabled {
  border-color: #D1D1D1;
  color: #D1D1D1;
  background-color: transparent;
  opacity: 1;
  cursor: not-allowed;
}

/**
 * Button Width Utility Classes
 * Prevents buttons from expanding when loading icons or dynamic content is added.
 * Use on buttons that show spinners or change text during async operations.
 */
.btn-width-100 {
  width: 100px !important;
  min-width: 100px !important;
  max-width: 100px !important;
}

.btn-width-125 {
  width: 125px !important;
  min-width: 125px !important;
  max-width: 125px !important;
}

.btn-width-150 {
  width: 150px !important;
  min-width: 150px !important;
  max-width: 150px !important;
}

.btn-width-175 {
  width: 175px !important;
  min-width: 175px !important;
  max-width: 175px !important;
}

.btn-width-200 {
  width: 200px !important;
  min-width: 200px !important;
  max-width: 200px !important;
}

button.btn-outline-danger {
  border: 1px solid #D1D1D1;
}

button.btn-outline-danger:hover > img {
  filter: brightness(0) invert(1);
}

button.btn-outline-primary:hover > img {
  filter: none !important;
}

.btn-success {
  background-color: #396;
}

.btn-outline-danger {
  background-color: #FFFFFF;
  border-color: #D1D1D1;
  color: #DC3545;
}

.btn-outline-danger:hover {
  background-color: #DC3545;
  color: #FFFFFF;
}

.btn-gold {
  background-color: #FFCF44;
  color: #051932;
}

.btn-green {
  color: #FFFFFF;
  background-color: #339966;
}
.btn-green:hover {
  color: #FFFFFF;
  background-color: #2A8356;
}

.import-title {
  color: #012857 !important;
}

.bg-dropzone-gray {
  background-color: #f1f2f6 !important;
  border-radius: 10px;
}

.fpo-instructions {
  font-size: initial;
  font-weight: bold;
  justify-content: center;
  text-align: center;
}

.fpo-next-steps {
  font-size: 16px;
  justify-content: center;
  text-align: center;
}

.header-banner {
  display: flex;
  align-items: center;
  justify-content: start;
  color: black;
  background-color: #FFCF44;
  margin-left: -30px;
  margin-right: -30px;
  margin-top: -20px;
  padding: 30px 35px;
}

.bg-darkgold-on-lightestgold {
  color: black !important;
  background-color: #FFEBB0 !important;
}

.bg-lightest-gold {
  color: black;
  background-color: #FFF7E0;
}

.order-summary td {
  border-color: #FFEBB0 !important;
}

.gold {
  color: black;
  font-weight: bold;
  font-size: 24px;
}

.order-summary a {
  color: black !important;
}

.btn-outline-primary.dropdown-toggle.show {
  background-color: #007BBD;
  color: #FFFFFF;
}

.btn-outline-primary.dropdown-toggle.show > img {
  filter: brightness(0) invert(1);
}

.btn-check:checked + .btn-outline-primary {
  background-color: #007BBD;
}

/*# sourceMappingURL=bootstrap.custom.css.map */
