* {
    font-family: "Red Hat Text", system-ui, sans-serif;
    user-select: none;
}
html, body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
}
#desktop-ui {
    height: 100%;
    margin: 0;
    padding: 0;
    background: white;
}
#desktop-ui > #taskbar {
    font-size: 20px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(1.3px);
    height: 48px;
    align-items: center;
    display: flex;
    bottom: 0;
    position: absolute;
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.3);
}
#desktop-ui > #taskbar > #taskbar-view {
    color: white;
    width: 100%;
    display: flex;
}
#desktop-ui > #taskbar > #taskbar-view > #clock {
    flex-shrink: 0;
    align-items: center;
    padding: 10px;
    margin: auto;
}
#desktop-ui > #taskbar > #taskbar-view > #tasks {
    display: inline-block;
    align-self: center;
    justify-self: center;
    overflow: scroll;
}
#desktop-ui > #deskview {
    background-image: url(https://picsum.photos/2880/1800);
    background-size: cover;
    height: 100%;
    padding: 0;
}
#desktop-ui > #deskview > #desk-elements {
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
}
#desktop-ui > #deskview > #desk-elements > .desktop-entry > .app-logo > img {
    width: 32px;
    height: 32px;
    color: white;
}
#desktop-ui > #deskview > #desk-elements > .desktop-entry > .app-logo {
    background: rgba(0, 0, 0, 0.3);
    display: inline-flex;
    padding: 6px;
    border-radius: 16px;
}
#desktop-ui > #deskview > #desk-elements > .desktop-entry > .app-name {
    width: 64px;
    font-size: 12px;
    color: white;
    text-shadow: 0px 0px 2px black;
}
#desktop-ui > #deskview > #desk-elements > .desktop-entry {
    display: inline-block;
    align-items: center;
    text-align: center;
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
}
#desktop-ui > #deskview > #desk-elements > .desktop-entry:hover {
    background: rgba(255, 255, 255, 0.2);
}
#desktop-ui > #taskbar > #taskbar-view > #tasks {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}
#desktop-ui > #taskbar > #taskbar-view > #tasks > .task-entry {
    display: inline-block;
    cursor: pointer;
}
#desktop-ui > #taskbar > #taskbar-view > #tasks > .task-entry > .app-logo {
    display: flex;
    padding: 6px;
    white-space: nowrap; 
}
#desktop-ui > #taskbar > #taskbar-view > #tasks > .task-entry > .app-name {
    font-size: 12px;
}
#desktop-ui > #taskbar > #taskbar-view > #tasks > .task-entry > .app-logo > img {
    width: 32px;
    height: 32px;
    color: white;
}
.winbox {
    border-radius: 6px;
    backdrop-filter: blur(1.3px);
    color: white;
    text-shadow: 0px 0px 1px black;
    background: rgba(0, 0, 0, 0.4);
}
.wb-title {
    font-family: "Red Hat Text", system-ui, sans-serif;
}
.winbox.max {
    border-radius: 0;
    background: black !important;
}