/* Generic setup */
* {
    outline: none;
    user-select: none;
}
body, ::selection {
    background-color: black;
    color: lightgray;
}

/* Set main page size in relation to the window size (so the install button appears in the correct place) */
html {
    width: 100%;
    height: 100%;
}
body {
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    
    position: absolute;
    left: 0;
    top: 0;
    display: block;
}

/* Profile button */
div#profile {
    display: none;
    position: fixed;
    left: 0px;
    top: calc(100% - 32px - 2px);
    width: calc(100% - 2px);
    height: 32px;
    z-index: 98;
    
    background-color: black;
    border: 1px solid lightgray;
    border-radius: 30px;
    text-align: center;
    line-height: 30px;
}
div#profileExpand {
    position: fixed;
    left: calc(100% - 30px - 4px);
    top: calc(100% - 30px - 4px);
    width: 30px;
    height: 30px;
    z-index: 99;
    
    background-color: black;
    border: 2px solid lightgray;
    border-radius: 30px;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
}
a.profileLink {
    color: lightgray;
    text-decoration: underline;
}
button#profileSettings {
    background-color: lightgray;
    border-radius: 5px;
    cursor: pointer;
}
