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;*/
}

.mobile-side-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 80vw;
    max-width: 320px;
    height: 100vh;
    background: #2C294B !important;
    z-index: 2000;
    box-shadow: -2px 0 8px rgba(0,0,0,0.15);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 2rem 1rem 1rem 1rem;
}

.mobile-side-menu.show {
    transform: translateX(0);
}

.close-mobile-menu {
    background: none;
    border: none;
    font-size: 2rem;
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
    color:#fff
}

/* Make the menu items vertically scrollable and reduce visible items */
.mobile-side-menu ul {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
    flex: 1 1 auto;
    overflow-y: auto;
    max-height: 70vh; /* Adjust as needed */
}

.mobile-side-menu ul li {
    margin-bottom: 0rem;
    /* Reduce height for fewer visible items */
    min-height: 10px;
}

.mobile-side-menu ul li a {
    font-size: .9375rem;    
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 0.75rem 0;
}

    .mobile-side-menu ul li:hover {
        background: #423F5D;
        padding-left: 5px;
        color: #fff;
        text-decoration: none;
    }

@media (min-width: 992px) {
    .mobile-side-menu {
        display: none !important;
    }
}