.btn-primary, .btn-primary:hover {
  background-color: #AED136;
  color: black;
  border: none;
  font-weight: bold;
}

.btn-primary:hover {
  opacity: .9;
}

.btn-primary:first-child:active {
  background-color: #AED136;
}

.btn-secondary, .btn-secondary:hover {
  background-color: #1D4C7E;
  color: white;
  border: none;
  font-weight: bold;
}

.btn-secondary:hover {
  opacity: .9;
}

.btn-secondary:first-child:active {
  background-color: #1D4C7E;
}

.btn-gray, .btn-gray:hover {
    background-color: #828282;
    color: white;
    border: none;
    font-weight: bold;
}

.btn-gray:hover {
  opacity: .9;
}

.btn.disabled {
  opacity: 0.5
}

.btn.disabled.btn-primary {
  background-color: #AED136;
  color: black;
  cursor: not-allowed;
}

.btn.disabled.btn-secondary {
  background-color: #1D4C7E;
  color: white;
  cursor: not-allowed;
}

.form-control::file-selector-button {
  color: white;
  background-color: #1D4C7E;;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  color: white;
  background-color: #1D4C7E;;
  opacity: 0.9;
}

.form-control:focus {
  border-color: rgb(25,118,210);
  border-width: 2px;
  box-shadow: none;
  color: rgb(25,118,210);
}

.border-primary {
  border-color: #AED136 !important;
}

.border-secondary {
  border-color: #1D4C7E !important;
}

.popover {
  background-color: #1D4C7E;
  --bs-popover-bg:#1D4C7E;
}

.popover-header {
  background-color: #1D4C7E;
}

.popover-body {
  color: white;
  font-weight: bold;
}

.popover.bs-popover-top .popover-arrow::before {
  border-top-color: #1D4C7E;
}

.popover.bs-popover-bottom .popover-arrow::before {
  border-bottom-color: #1D4C7E;
}

.popover.bs-popover-start .popover-arrow::before {
  border-left-color: #1D4C7E;
}

.popover.bs-popover-end .popover-arrow::before {
  border-right-color: #1D4C7E;
}