body {
    background-color: #000000;
    color: #e0e0e0;
    font-family: Arial, sans-serif;
    font-size: 16px;
    margin: 0;
    padding: 0;
}

/* Container Styles */
.scrolling{
    max-height: 90vh;
    overflow: scroll;
}
.container {
    max-width: 69%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #222222;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

h1, h2 {
    color: var(--sh-green);
    margin-bottom: 20px;
}

a {
    color: var(--sh-green);
    text-decoration: none;
}

a:hover {
    color: var(--sh-magenta);
}

table {
    border-collapse: collapse;
    margin-bottom: 20px;
}

th, td {
    border: 1px solid #444444;
    padding: 10px;
    text-align: left;
}

th {
    background-color: #444444;
    color: #ffffff;
}

form {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 10px;
}

.content{
    text-align: center;
    align-items: center;
    margin: auto auto;
    padding: 20px;
}

input[type="text"], input[type="password"] {
    width: 10vw;
    min-width: 256px;
    height: 25px;
    padding: 10px;
    border: none;
    border-radius: 10px;
    background-color: #666666;
    color: #ffffff;
    margin-bottom: 20px;
}

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

li {
    margin-bottom: 20px;
    padding: 20px;
    background-color: #555555;
    border-radius: 15px;
    transition: background-color 0.3s ease;
}

.otpcont {
    position: relative;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 3.2vh;
    transition: opacity 400ms 400ms, max-height 400ms 400ms;
}

.otpcont:hover .otpa {
    opacity: 1;
    pointer-events: auto;
    max-height: 200px;
    padding-top: 5px;
    transition: opacity 400ms 0ms, max-height 400ms 0ms;
}

.otpcont:hover .otpdropq {
    height: 0;
    color: transparent;
    transition: color 400ms 0ms;
}

.otpcont .otpa p{
    padding-left: 20px;
}

.otpdropq {
    font-weight: bold;
    color: gold;
    height: auto;
    width: auto;
    transition: color 400ms 400ms;
}

.otpa{
    opacity: 0;
    pointer-events: none;
    max-height: 0px;
    transition: opacity 400ms 400ms, max-height 400ms 400ms;
    cursor: text;
}