body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    font-family: "Pixelated MS Sans Serif", Arial;
    -webkit-font-smoothing: none;
    font-size: 11px;
}

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

#desktop {
    background-color: #008080;
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.hidden { display: none !important; }
.admin-only { display: none; }

.dev-window {
    position: fixed;
    right: 12px;
    top: 12px;
    width: 300px;
    pointer-events: auto;
    transition: height 150ms ease-out;
}
.dev-window.collapsed {
    height: 24px;
    min-height: 24px; 
    overflow: hidden;
}
.dev-window.collapsed .window-body {
    display: none;
}
.dev-window .window-body.compact { padding: 8px; font-size: 11px; }
.dev-window .row { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.status-text { font-weight: bold; font-size: 11px; margin-left: 6px; }