html {
  font-size: 14px;
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space:nowrap;
    line-height: 60px;
}

@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%;
  font-size: 14px;
}

body {
  margin-bottom: 60px;
}


.navbar, .offcanvas-header {
    min-height: 65px;
}

.navbar-icon {
    cursor: pointer;
    font-style: normal;
    font-size: 1.5rem;
    /*color: white;*/
}

    .navbar-icon:hover {
        color: #a10001;
    }

.navbar .dropdown-item:active {
    background-color: #a10001;
}

.navbar-search {
    position: relative;
}

    .navbar-search input {
        padding-right: 35px;
        border: none;
        min-width: 200px;
        transition: min-width 0.5s;
    }

        .navbar-search input:focus {
            min-width: 350px;
        }

    .navbar-search i {
        position: absolute;
        right: 10px;
        top: 0px;
        font-size: 1.5rem;
    }

.offcanvas {
    max-width: 280px;
}

/*Reports Page*/
.report-card {
    cursor: pointer;
}

h4.report_section {
    border-bottom: double;
    border-color: black;
    border-width: 2px;
}

.table-sticky {
    max-height: 700px; /* Adjust the height as needed */
}

    .table-sticky .table thead th, .table tfoot th {
        position: sticky;
        z-index: 1;
    }

    .table-sticky .table thead th {
        top: 0;
        background-color: #fff; /* Optional: to match the table background */
        border-bottom: 1px solid black;
    }

    .table-sticky .table tfoot th {
        bottom: 0;
        background-color: #fff; /* Optional: to match the table background */
        border-top: 1px solid black;
    }