

a:link { text-decoration: none; color: inherit; }
a:visited { text-decoration: none; color: inherit; }
a:hover { text-decoration: none; color: inherit; }

*::-webkit-scrollbar-track{
    -moz-box-shadow: 0;
    -webkit-box-shadow: inset 0 0 2px rgba(0,0,0,0.9);
    box-shadow:  inset 0 0 2px rgba(0,0,0,0.9);
    border-radius: 5px;
    background-color: silver; }
*::-webkit-scrollbar{
    width: 11px;}
*::-webkit-scrollbar-thumb{
    border-radius: 5px;
    background-color: limegreen;
    background-image: -webkit-linear-gradient(90deg,
    transparent,
    rgba(0, 0, 0, 0.4) 50%,
    transparent,
    transparent) }

a:focus,
select:focus,
textarea:focus,
button:focus,
input:focus{ outline: none; }


/* Button Styles */
button {
    letter-spacing: 0.05em;
    font-family: Georgia, sans-serif;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    padding: 5px 15px;
    cursor: pointer;
}

/* Input Styles */
select,
input[type="text"],
input[type="email"],
input[type="password"] {
    font-size: 16px;
    padding: 10px;
    border: none;
    border-radius: 5px;
}
select { padding: 5px 10px; }
input[type="checkbox"] {
    height: 20px;
    width: 20px;
}


body, html {
    background-color: #000;
    letter-spacing: 0.05em;
    font-family: Georgia, sans-serif;
    font-size: 16px;
    color: white;
    margin: 0;
    padding: 0;
}

#icon-root {
    position: fixed;
    top: 10px;
    left: 25px;
    width: 30px;
    cursor: pointer;
    z-index: 6;
}

#auth-container {
    position: fixed;
    top: 55px;
    left: 15px;
    z-index: 6;
}
#icon-logout,
#icon-register,
#icon-login {
    width: 100%; font-size:22px; margin-top: 15px; cursor: pointer;
}
#icon-login {
    width: 100%; font-size:22px; margin-top: 15px; margin-left: 10px;
}

#header {
    background-color: #000;
    position: fixed;
    top: 0;
    width: 100%;
    text-align: center;
    font-size: 22px;
    color: white;
    width: 100%;
    padding: 12px 0;
    border-bottom: 2px solid #f90;
    z-index: 5;
}

#title {
    background-color: #000;
    position: fixed;
    top: 50px;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    border-bottom: 2px solid #f90;
}









