ihtml {
  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;
  /* subtle professional sky-blue background for the site */
  background: linear-gradient(180deg, #eef8ff 0%, #f7fdff 100%);
  color: #052a45;
}

.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;
}

/* Flatee Flee theme: sky blue header and clean professional look */
.site-header {
  background: linear-gradient(90deg, #7ec8f8 0%, #87ceeb 45%, #dff4ff 100%);
  padding: 0.6rem 1rem;
  border-bottom: 1px solid rgba(5,42,69,0.06);
  backdrop-filter: blur(6px);
}
.site-header .navbar-brand {
  font-weight: 800;
  color: #052a45;
  font-size: 1.25rem;
  letter-spacing: 0.3px;
}
.site-header .brand-img {
  height: 44px;
  width: auto;
  margin-right: 0.5rem;
}
.site-header .brand-text {
  line-height: 1;
}
.site-header .brand-text .fw-bold {
  color: #052a45;
  font-size: 1rem;
}
.site-header .brand-text small {
  color: rgba(5,42,69,0.75);
}
.site-header .nav-link {
  color: #052a45 !important;
  padding: 0.5rem 0.75rem;
  font-weight: 600;
}
.site-header .nav-link:hover, .site-header .nav-link:focus {
  color: #023449 !important;
  text-decoration: none;
}
.site-header .dropdown-menu {
  min-width: 18rem;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(8,35,60,0.12);
}
.site-header .dropdown-item:hover {
  background: rgba(6,84,143,0.06);
}
.site-header .navbar-toggler {
  border-color: rgba(5,42,69,0.12);
}
.site-header .navbar-toggler-icon {
  filter: invert(0.15) brightness(1.2);
}
.site-header .navbar-brand img {
  display: inline-block;
}
.footer {
  background: #f1f8ff;
  padding: 1rem 0;
}

/* Form focus colors */
.form-control:focus {
  border-color: #2b98f0;
  box-shadow: 0 0 0 0.1rem rgba(43,152,240,0.25);
}

/* Page container tweaks */
.container main {
  padding-top: 1rem;
}

/* Print rules: hide navigation/header/footer and interactive elements when printing */
@media print {
  header, footer, .navbar, .no-print { display: none !important; }
  body { background: #fff !important; color: #000 !important; }
  .card { box-shadow: none !important; }
}