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;
}
@media (max-width: 767.98px) {

    .table-stackedpart thead th.stacked-col {
        display: none;
    }

    .table-stackedpart tbody td.stacked-col {
        display: block;
        width: 100%;
        position: relative;
        margin-bottom: 0.5rem;
        padding-left: 40% !important; /* space for the label text */
        border: none;
        border-bottom: 1px solid #dee2e6; /* optional row-divider style */
    }

        .table-stackedpart tbody td.stacked-col::before {
            content: attr(data-label) ": ";
            position: absolute;
            left: 1rem;
            top: 0.5rem;
            font-weight: bold;
        }

    .table-stacked thead {
        display: none; /* Hide the entire table head on small screens */
    }

    .table-stacked td {
        display: block;
        width: 100%;
        position: relative;
        padding-top: 0px !important;
        padding-bottom: 0px !important;
        margin-top: 0px !important;
        margin-bottom: 0px !important;
        border-bottom: 10px;
        border-top: 0px;
        border: 0px;
        margin: 0px !important;
        padding: 0px !important;
        padding-left: 20% !important;
    }

        .table-stacked td::before {
            content: attr(data-label) ": ";
            position: absolute;
            left: 1rem;
            /* 
            top: 1rem;
            bottom: 1rem;
                */
            font-weight: bold;
            /* or any styling you wish for the label text */
        }
}
