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;
}
.custom-top-header {
    width: 100%;
    height: 70px; /* Desktop height */
    background-color: #000; /* Or your brand color */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 12px;
    position: sticky;
    top: 0;
    z-index: 1000;
}


.custom-header-link,
.custom-header-link:visited,
.custom-header-link:active {
    font-size: 3rem;
    font-weight: 900;
    color: black !important; /* Force black */
    text-decoration: none;
}

.custom-header-link:hover {
        color: black !important;
        text-decoration: underline;
}
.custom-header-logo {
    max-height: 48px; /* Prevents oversized logo */
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}
