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;
}


/* ==============================
   Dashboard Styling
   ============================== */


.dashboard-card {
    border-radius: 15px;
    transition: 0.3s;
}


    .dashboard-card:hover {
        transform: translateY(-5px);
    }



.dashboard-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}



.chart-card {
    border-radius: 15px;
    min-height: 350px;
}



    .chart-card canvas {
        max-height: 280px;
    }

@media (max-width: 767px) {

    .mobile-login-menu {
        width: 100%;
        justify-content: center;
        align-items: center;
        text-align: center;
    }


        .mobile-login-menu .nav-item {
            width: 100%;
            text-align: center;
            margin-bottom: 5px;
        }


        .mobile-login-menu .dropdown-menu {
            position: static !important;
            float: none;
            text-align: center;
        }


        .mobile-login-menu .dropdown-item {
            text-align: center;
        }
}

@media (max-width: 767px) {

    .navbar-nav {
        width: 100%;
        text-align: center;
    }


        .navbar-nav .nav-item {
            width: 100%;
        }


        .navbar-nav .nav-link {
            padding: 10px 0;
        }


    .navbar-collapse {
        text-align: center;
    }


        .navbar-collapse .dropdown-menu {
            text-align: center;
        }
}