body {
    font-family: "Noto Sans", sans-serif;
    background-image: url("media/wallpapers/1227431.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    width: 100%;
    height: 100vh;
    margin: 0;
    overflow: hidden;
}

#top-bar {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.25);
    color: #fff;
}

::selection {
    background-color: #4A2E6B;
    color: #fff;
}

.window {
    border: solid;
    border-radius: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    filter: drop-shadow(0 20px 20px rgba(0, 0, 0, 0.3));
}

.focusedWindow {
    filter: drop-shadow(0 30px 20px rgba(0, 0, 0, 0.5));
}

.windowheader {
    padding: 10px;
    cursor: move;
    border-bottom: solid;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.unselectable {
    -webkit-user-select: none;
    user-select: none;
}

.closeButton {
    width: 16px;
    height: 16px;
    cursor: pointer;
    background-color: #EC6B5E;
    border-radius: 16px;
    border: solid 1px rgba(0, 0, 0, 0.25);
    margin-left: 6px;
}

.desktopApp {
    text-align: center;
    padding: 16px;
    filter: drop-shadow(0 0 8px black);
    width: fit-content;
}

.selected {
    background-color: rgba(255, 255, 255, 0.5);
}