body {
    background-color: #1e1e1e;
    color: #ffffff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.center {
    align-items: center;
    justify-content: center;
}

h1 {
    color: #61dafb;
}

p {
    color: #c3c3c3;
    margin-bottom: 20px;
}

label {
    color: #c3c3c3;
    margin-bottom: 5px;
}

select {
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #333;
    color: #c3c3c3;
}

button {
    background-color: #61dafb;
    color: #1e1e1e;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}

button:hover {
    background-color: #45aaf2;
}

pre {
    background-color: #333;
    color: #c3c3c3;
    padding: 20px;
    border-radius: 5px;
    white-space: pre-wrap;
    max-width: 600px;
    overflow: auto;
}


#cn {
    justify-content: center;
}

.item-selector-container {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

/* Search input styles */
input {
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-right: 10px;
    background-color: #333;
    color: #c3c3c3;
}

.styled {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ddd;
    /* Light gray color */
    margin: 1em 0;
    /* Adjust margin as needed */
    padding: 0;
}



/* Add a black background color to the top navigation */
.topnav {
    background-color: #333;
    overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    transition: all .25s;
}

/* Change the color of links on hover */
.topnav a:hover {
    background-color: #ddd;
    color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
    background-color: #0b3874;
    color: white;
}

@media screen and (max-width: 600px) {
    .topnav a:not(:first-child) {display: none;}
    .topnav a.icon {
      float: right;
      display: block;
    }
  }
  
  /* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
  @media screen and (max-width: 600px) {
    .topnav.responsive {position: relative;}
    .topnav.responsive a.icon {
      position: absolute;
      right: 0;
      top: 0;
    }
    .topnav.responsive a {
      float: none;
      display: block;
      text-align: left;
    }
  }