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;
  color:black;
}

.nav-link{
    color: slategrey;
}

.navlink, .active{
    color:black;
}

.btn-ms-login {
    background-size: 100%;
    width: 200px;
    height: 38px;
    margin-top: 15px;
    border: none;
    background-repeat: no-repeat;
}

html {
    position: relative;
    min-height: 100%;
}

.container{
    max-width: 100vw;
}

.content-area{height: 75vw;}

.sidebar {
    background-color: white;
    height: 75vh;
    width: 250px;
    padding-top: 20px;
    position: fixed;
    z-index: 1;
    transition: all 0.3s ease-in-out;
    left: 0;
    overflow-x: hidden;
    box-shadow: 2px 0px 5px rgba(0,0,0,0.2);
}

    .sidebar.collapsed {
        width: 0;
        padding: 0;
        overflow: hidden;
    }

.content-area {
    margin-left: 250px;
    height: 75vh;
    padding: 20px;
    transition: margin-left 0.3s ease-in-out;
}

    .content-area.expanded {
        margin-left: 0;
    }

.toggle-btn {
    position: fixed;
    left: 260px;
    cursor: pointer;
    color: black;
    border: none;
    padding: 0 5px;
    border: 2px solid black;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

    .toggle-btn.collapsed {
        left: 10px;
    }

.btn-logout {
    top: 15px;
    right: 40px;
    position: fixed;
    text-decoration:none;
    color:black;
}


#loadingSpinner {
    z-index: 9999;
    margin-left: 25px;
}

.spinner {
    border: 8px solid #f3f3f3; /* Light gray */
    border-top: 8px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 25px;
    height: 25px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}