html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
}

.logo-left,
.logo-right {
  height: 48px;
  width: auto;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'><path fill='%23666' d='M2 3l3 3 3-3z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  padding-right: 40px;
}

select.form-control:focus {
  background-image: url("data:image/svg+xml;charset=US-ASCII,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'><path fill='%23666' d='M8 7L5 4 2 7z'/></svg>");
}

select.form-control::-ms-expand {
  display: none;
}

/* Hide the default radio button */
input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 50%;
  background-color: white;
  margin-right: 8px;
  position: relative;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
}

/* Radio button checked state */
input[type="radio"]:checked {
  border-color: #003366;
  background-color: #003366;
}

/* Inner dot for checked state */
input[type="radio"]:checked::after {
  content: 'check';
  font-family: 'Material Symbols Outlined';
  color: white;
  font-size: 16px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
}

/* Radio button focus state */
input[type="radio"]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

/* Radio button hover state */
input[type="radio"]:hover {
  border-color: #007bff;
}

/* Label styling for radio buttons */
label input[type="radio"] + span,
label input[type="radio"] ~ span {
  vertical-align: middle;
  margin-left: 4px;
}

/* Ensure radio button labels are inline */
label:has(input[type="radio"]) {
  display: inline-flex;
  align-items: center;
  flex-direction: row;
  width: 100%;
  margin-bottom: 2px;
}

.form-check {
  display: block;
  margin-bottom: 2px;
}

.radio-group  div:has(input[type="radio"]) {
  display: block;
  margin-bottom: 2px;
}

.radio-option label input {
  height: 20px;
  width: 20px;
  border-radius: 50%;
}

.nav-logo img {
  width: 115.11px;
  height: 37px;
  max-width: none;
  max-height: none;
  object-fit: contain;
}

.burger-menu {
  position: relative;
  display: inline-block;
}

.burger-icon {
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: background-color 0.2s;
  color: #333;
}

.burger-icon:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background-color: #EFF3F6;
  border: none;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  min-width: 250px;
  z-index: 1000;
}

@media (max-width: 768px) {
  .dropdown-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    width: 100vw;
    min-width: unset;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }
}

.burger-menu .dropdown-menu .menu-item {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 32px;
    width: 100%;
    padding: 8px 4px 8px 4px;
    border: none;
    background-color: #FFFFFF;
    cursor: pointer;
    transition: background-color 0.2s;
    position: relative;
    text-decoration: none;
    text-align: left;
    color: #333;
    font-family: Korb-Bold, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 105%;
}

.menu-item:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1%;
  width: 95%;
  height: 1px;
  background-color: #CCD7E6;
}

.menu-item .material-symbols-outlined {
  font-size: 20px;
}

.menu-item:last-child {
  border-bottom: none;
}

.burger-menu .dropdown-menu .menu-item:hover,
.burger-menu .dropdown-menu .menu-item:focus {
  background-color: #CCD7E6;
  text-decoration: none;
  color: #000000;
}

.dropdown-menu.show {
  display: block;
}

.custom-file-upload {
  border: 1px dashed #005187;
  border-radius: 5px;
  padding: 2rem;
  text-align: center;
  color: #003366;
  cursor: pointer;
  position: relative;
  margin-bottom: 1rem;
}

.custom-file-upload input[type="file"] {
  display: none;
}

.upload-icon {
  font-size: 16px;
  margin-bottom: 0.5rem;
}

.upload-content p {
  margin: 0;
  font-weight: 400;
  color: #003366;
}

.upload-content small {
  color: #58585A;
  font-size: 14px;
  line-height: 150%;
}

.form-content-rounded-bg {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 20px;
}

.status-wrapper {
  display: inline-block;
}
 
.application-status {
  border: 1px solid;
  border-radius: 15px;
  padding: 6px 16px;
  display: inline-block;
  width: auto;
  white-space: nowrap;
}

.application-status-good {
  background-color: #E4F1E4;
  color: #2E8533;
  border-color: #2E8533;
}

.application-status-error {
  background-color: #FBDCDE;
  color: #D50612;
  border-color: #D50612;
}

.step-title {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #00050A;
  line-height: 150%;
  letter-spacing: 0.2px;
  margin: 0;
}

.section-title {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #00050A;
  line-height: 150%;
  letter-spacing: 0.2px;
  margin: 0;
  margin-top: 0;
}


.section-value {
  color: #00050A;
}
