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;
}

html, body {
    overflow-y: hidden; /* Hides vertical scrollbar */
    height: 100%;
    margin: 0;
    padding: 0;
}


.footer { /* Assuming your footer has a class of 'footer' */
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 80px; /* Set the fixed height of your footer */
    background-color: #f8f9fa; /* Example background color */
    color: #333; /* Example text color */
}

.my-grid-container {
    height: 650px; /* Example fixed height */
    overflow-y: auto; /* Ensures vertical scrollbar appears when content overflows */
}

.my-grid-container-small {
    height: 450px; /* Example fixed height */
    overflow-y: auto; /* Ensures vertical scrollbar appears when content overflows */
}