<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#selectListGo {
  width: 100%;
  height: 100px; /* Adjust height as needed */
  overflow-y: auto; /* This makes the div scrollable */
  margin-right: 20px;
  border: 1px solid #ddd;
  padding: 10px;
}

#selectListGo ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

#selectListGo li {
  cursor: pointer;
  color: blue;
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 20px;
}

#selectListGo li:hover {
  text-decoration: underline;
}

/* Alternating background colors for list items */
#selectListGo li:nth-child(odd) {
  background-color: #f9f9f9; /* Light color for odd items */
}

#selectListGo li:nth-child(even) {
  background-color: #e9e9e9; /* Slightly darker color for even items */
}

/* Style the scrollbar in #selectListGo */
#selectListGo::-webkit-scrollbar {
  width: 10px; /* Adjust the width of the scrollbar */
}

#selectListGo::-webkit-scrollbar-track {
  background: #f1f1f1; /* Color of the scrollbar track */
}

#selectListGo::-webkit-scrollbar-thumb {
  background: #888; /* Color of the scrollbar handle */
  border-radius: 10px; /* Rounded corners for the handle */
}

#selectListGo::-webkit-scrollbar-thumb:hover {
  background: #555; /* Color of the scrollbar handle on hover */
}

input {
  width: 40px;
}

#box1 {
  color: azure;
  font-size: 22px;
  background-color: dimgrey;
}

#box2 {
  color: azure;
  font-size: 22px;
  background-color: dimgrey;
}

#box3 {
  color: azure;
  font-size: 22px;
  background-color: dimgrey;
}

#box4 {
  color: azure;
  font-size: 22px;
  background-color: dimgrey;
}

#box5 {
  color: azure;
  font-size: 22px;
  background-color: dimgrey;
}

/* The Modal (background) */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 95%;
  /* Could be more or less, depending on screen size */
}

/* screen width higher than 750px */
@media screen and (min-width: 950px) {
  .modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
    /* Could be more or less, depending on screen size */
  }
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

#step1 {
  display: block;
}

#step1Display {
  display: none;
}

#step2 {
  display: none;
}

#step3 {
  display: none;
}

#step3Display {
  display: none;
}

#step4 {
  display: none;
}
#step4Display {
  display: none;
}
#step6 {
  display: none;
}

#step7 {
  display: none;
}

body {
  background-color: lightblue;
}

.max-img-size {
  max-width: 500px; /* Set your desired maximum width */
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.back-to-top {
  color: #dddada;
}

.back-to-top:hover {
  background-color: #f8f9fa;
  color: #0056b3;
}
</pre></body></html>