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 {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* Header styling: ensure blue background and bold white text */
header .navbar {
  /* bg-primary + navbar-dark already sets blue background and light toggler; keep as-is */
}

header .navbar .navbar-brand,
header .navbar .nav-link {
  color: #ffffff !important;
  font-weight: 700;
}

header .navbar .nav-link:hover {
  color: #e6f4ff !important;
}

/* Styles for updated EMI UI */
.form-range {
  height: 6px;
}
.form-range::-webkit-slider-thumb {
  width: 18px;
  height: 18px;
  background: #ff8c42;
  border-radius: 50%;
  border: 3px solid #ff8c42;
  box-shadow: 0 0 0 4px rgba(255,140,66,0.12);
}
.card-title {
  margin-bottom: 0.75rem;
}
.fw-bold { font-weight: 700; }
.legend .badge { font-size: 0.85rem; }