@font-face {
    font-family: 'Tahoma-8px';
    src: url('./assets/fonts/fs-tahoma-8px.ttf') format('truetype');
}

* {
    user-select: none;
}

body {
    margin: 0;
    overflow: hidden;
    font-family: 'Tahoma-8px', sans-serif;
    font-size: 16px;
    color: white;
    letter-spacing: 0.02ch;
}

#logon-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #5a7edc;
    z-index: 99999999;
}

#logon-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 80px;
}

#logon-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 80px;
}

#logon-shine {
    position: absolute;
    top: 80px;
    left: 0;
}

#logon-interact {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 75vh;
}

#logon-button {
    position: absolute;
    top: 46.5vh;
    left: 49vw;
    width: 22.5vw;
    height: 6.4vh;
    cursor: pointer;
}

#wallpaper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -99;
    user-select: all;
}

#icon-grid {
    display: grid;
    grid-template-rows: repeat(auto-fill, 75px);
    grid-auto-columns: 75px;
    gap: 4px;
    width: 100vw;
    height: calc(100vh - 30px);
}

.icon-grid-item {
    position: relative;
    width: 75px;
    height: 75px;
}

.icon-grid-item .icon {
    position: absolute;
    top: 2px;
    left: 21px;
    width: 32px;
    height: 32px;
}

.icon-grid-item .select-tint.selected {
    position: absolute;
    top: 2px;
    left: 21px;
    width: 32px;
    height: 32px;
    background-color: rgb(49, 106, 197, 0.6);
}

.icon-grid-item .title {
    position: absolute;
    top: 39px;
    left: 50%;
    transform: translateX(-50%);
    padding-left: 2px;
    padding-right: 2px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.75);
    text-align: center;
}

.icon-grid-item .title.selected {
    text-shadow: none;
    background-color: #316ac5;
}

#selection-box {
    position: absolute;
    border: 1px dotted;
    mix-blend-mode: difference;
    display: none;
    z-index: -98;
    pointer-events: none;
}

#taskbar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 30px;
}

#taskbar #bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 30px;
    z-index: -1;
}

#taskbar #start {
    position: absolute;
    bottom: 0;
    left: 0;
}

#start-menu-container {
    position: absolute;
    bottom: 28px;
    left: 0;
}

#start-menu {
    position: relative;
}

#start-menu-pfp {
    position: absolute;
    top: 9px;
    left: 9px;
    width: 48px;
    height: 48px;
}

#start-menu-buttons {
    position: absolute;
    top: 73px;
    left: 8px;
    width: 182px;
}

#start-menu #buttons > {
    display: block;
    margin-bottom: 4px;
}

#start-menu #logoff-button {
    position: absolute;
    bottom: 10px;
    right: 53px;
    cursor: pointer;
}

#taskbar #quicklaunch {
    position: absolute;
    bottom: 0px;
    left: 106px;
    width: 100px;
}

#quicklaunch .item {
    margin-right: -2px;
    user-select: none;
    cursor: default;
}

#taskbar #end {
    position: absolute;
    bottom: 0;
    right: 0;
}

#taskbar #clock-container {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 75px;
    height: 30px;
}

#taskbar #clock {
    position: relative;
}

#taskbar #time {
    position: absolute;
    bottom: calc(50% + 1px);
    right: 50%;
    transform: translate(50%, 50%);
    width: max-content;
}

.window {
    position: absolute;
    box-shadow: inset -1px -1px #00138c,inset 1px 1px #0831d9,inset -2px -2px #001ea0,inset 2px 2px #166aee,inset -3px -3px #003bda,inset 3px 3px #0855dd;
    padding: 0 0 3px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    resize: both;
    overflow: auto;
    min-width: 123px;
    min-height: 28px;
}

.window::-webkit-resizer {
    display: none;
}

.window .title-bar {
    font-family: 'Trebuchet MS';
    background: linear-gradient(180deg,#0997ff,#0053ee 8%,#0050ee 40%,#06f 88%,#06f 93%,#005bff 95%,#003dd7 96%,#003dd7);
    padding: 3px 5px 3px 3px;
    border-top: 1px solid #0831d9;
    border-left: 1px solid #0831d9;
    border-right: 1px solid #001ea0;
    border-top-left-radius: 8px;
    border-top-right-radius: 7px;
    font-size: 13px;
    text-shadow: 1px 1px #0f1089;
    height: 21px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.window .title-bar-text {
    font-weight: 700;
    letter-spacing: 0;
    margin-left: 3px;
}

.window .content {
    border: none;
    width: calc(100% - 6px);
    height: calc(100% - 28px); /*accounting for title bar*/
    margin-left: 3px;
    display: none;
}