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 {
  min-height: 100vh;
  margin: 0;
}

.modern-navbar-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.1rem;
    font-weight: 800;
    color: #007bff;
    letter-spacing: -1px;
    text-shadow: 0 2px 8px rgba(0,123,255,0.08);
    background: linear-gradient(90deg, #007bff 0%, #00c6ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    padding-left: 0.5rem;
    margin-right: 1.5rem;
    transition: color 0.2s, text-shadow 0.2s;
}

@media (max-width: 600px) {
    .modern-navbar-logo {
        font-size: 1.3rem;
        padding-left: 0.2rem;
        margin-right: 0.5rem;
    }
}