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;
    position: sticky;
}

/* 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;
}



a.disabled {
    pointer-events: none;
}

@keyframes in_out {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(2);
    } 

    100% {
        transform: scale(1);
    }
}