.closebutton{
    cursor: pointer;
    width: 20px;
    margin-left: 8px;
    margin-top: 2px;
    color: antiquewhite;
    position:absolute;
    top: 5px;
    left: 8px
}

.window{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: solid;
    border-width: 2px;
    border-radius: 16px;
    border-color: white;
    width: fit-content;
    padding: 16px;
    background-color: rgba(0,0,0,0.5);
    display: none;
}

.windowheader{
    user-select: none;
    cursor: grab;
    text-align: center;
    font-size: small;
    color: white;
}


.selected{
    border-radius: 64px;
    background-color: rgba(0,0,0,1);
}


.text{
    color: antiquewhite;
    text-align: center;
}

.calcBtn{
    padding: 12px 0;
    border: none;
    border-radius: 6px;
    background-color: rgba(255,255,255,0.15);
    color: antiquewhite;
    font-size: 16px;
    cursor: pointer;
}

.calcBtn:hover{
    background-color: rgba(255,255,255,0.3);
}
#calc{
    width: 300px !important;
}

#calc > div{
    width: 100%;
}