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;
}

.menu-highlight {
    font-weight: bold;
    color: #007bff !important;
    background: linear-gradient(90deg, #e3f2fd 0%, #fff 100%);
    border-radius: 6px;
    padding: 0.5em 1em;
    margin-right: 0.5em;
    transition: background 0.2s, color 0.2s;
}

    .menu-highlight:hover {
        color: #0056b3 !important;
        background: #d0e7ff;
        text-decoration: none;
    }

    .menu-highlight i {
        margin-right: 0.5em;
    }

.active-menu {
    box-shadow: 0 2px 8px rgba(0,123,255,0.15);
    border: 2px solid #007bff;
    color: #0056b3 !important;
    background: #e3f2fd;
}

.main-container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
}

@media (min-width: 960px) {
    .main-container {
        width: 95%;
    }
}