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%;
}
#leftsidebar .menu .list{
    height: 100% !important; 
    overflow-y: auto !important;
    padding-bottom : 25px;
}
/* For Chrome, Edge, and Safari */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background-color: #888; 
    border-radius: 10px; 
}

    ::-webkit-scrollbar-thumb:hover {
        background-color: #555; 
    }

::-webkit-scrollbar-track {
    background: #f1f1f1; 
    border-radius: 10px; 
}

.btn-blink {
    animation: blinking-bg 1s infinite alternate;
    transition: background-color 0.3s ease-in-out;   
    border-radius: 5px;
}
/* For Firefox */
*{
    scrollbar-width: thin; 
    scrollbar-color: #888 #f1f1f1;
}
@keyframes blinking-bg {
    0% {
        background-color: transparent;
    }
    50% {
        background-color: #fc721e;
    }
    /* Yellowish Blink */
    100% {
        background-color: transparent;
    }
}

/*.nav-item a.blinking {
    animation: blinking-bg 1s infinite alternate;
    transition: background-color 0.3s ease-in-out;
    padding: 5px 10px;
    border-radius: 5px;
}*/

