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;
  padding: 0;
}

.checklist-container {
  margin: 20px;
  width: 80vw; /* Adjust width as needed */
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist-item {
  margin-bottom: 10px;
  font-size: 1.2em;
  display: flex;
  align-items: center;
}

.checklist-item input[type="checkbox"] {
  width: 30px; /* Size of the checkbox */
  height: 30px;
  margin-right: 10px;
}


   /* Make sure the container takes up the full width */
 .code-container {
   width: 80vw; /* Adjust width as needed */
   height: 60vh; /* Adjust height as needed */
   margin: 20px auto; /* Center the container */
   overflow: hidden; /* Prevent outer scrollbars */
 }

/* Style the pre element to fit the container */
pre {
  margin: 0;
  height: 100%; /* Make the pre element fill the container height */
  overflow: auto; /* Ensure scrolling if content overflows */
}

/* Optional: adjust the font size if needed */
/*code {*/
/*  font-size: 1em; !* Adjust font size as needed *!*/
/*}*/

ul li {
  margin-bottom: 5px; /* Adjust the spacing as needed */
}
