.closebutton {
    width: 20px;
    height: 20px;
    cursor: pointer;
    background-color: #500000;
    border-radius: 5px;
    border: solid 1px rgba(0, 0, 0, 0.25);
    margin-left: 800px;
}

.windowheader {
    margin-left: -20px;
    margin-top: -20px;
    border-radius: 20px;
    background-color: #5B686D;
    height: 100%;
    width: 104.9%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.window {
    background-color: rgba(91, 104, 109, 0.4);
    backdrop-filter: blur(13px);
    -webkit-backdrop-filter: blur(12px);
    position: absolute;
    transform: translate(-50%, -50%);
    padding: 20px;
    width: fit-content;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.selected {
    backdrop-filter: blur(13px); /* Soft white highlight */
    border-radius: 20px; /* Rounds the highlight box */
    transition: all 0.1s ease; /* Makes it fade in smoothly */
}