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;
}

.navbar-nav .nav-link.active {
    border-bottom: 3px solid #007bff; /* Blue underline */
    font-weight: bold;
    color: #007bff !important;
}

.navbar-expand .navbar-toggler {
     display: block; 
}
th, td {
    white-space: nowrap;
}
tr{
    height:initial;
}
#dataChart {
    white-space: nowrap;
}
/* in site.css */
@media (max-width: 768px) {
    .sidebar {
        position: relative;
        width: 100%;
        height: auto;
        border-right: none;
    }

    .content {
        margin-left: 0;
        width: 100%;
    }

    #chartDiv {
        height: 400px;
        width: 600px;
    }
}


/* Login Page CSS

*/

body {
    background-color: #f8f9fa;
}

.login-container {
    max-width: 400px;
    margin: 80px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.scrollable {
    height: calc(100vh - 130px); /* Adjust 100px as per your header/footer height */
    overflow-y: auto;
    width: 100%;
/*    border: 1px solid #ccc;*/
}
