/*




 
  __  __  __  __    
/\ \/\ \/\ \/\ \   
\ \ \ \ \ \ \ \ \  
 \ \ \ \ \ \ \ \ \ 
  \ \ \_/ \ \ \_/ \
   \ `\___/\ `\___/
    `\/__/  `\/__/                                 





*/

@font-face {
  font-family: 'pixelify';
  font-style: normal;
  font-weight: normal;
  src: url('../fonts/pixelify.woff2') format('woff2');
  font-display: block;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -moz-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
}

body {
    font-family: 'pixelify', monospace;
    color: #989898;
    background: #FFFFFF;
    overflow: hidden;
    height: 100vh;
    cursor: default;
    font-size: 11px;
    font-weight: 400;
}

a, a:link, a:visited, a:hover, a:active {
    color: #989898;
    outline: none;
    text-decoration: none;
}

.menu-bar {
    background: #FFFFFF;
    border-bottom: 1px solid #E6E6E6;
    color: #989898;
    height: 18px;
    display: flex;
    align-items: center;
    padding: 0 2px;
    font-size: 10px;
    position: relative;
    z-index: 1000;
}

.menu-item {
    color: #989898;
    padding: 2px 4px;
    white-space: nowrap;
    border: 1px solid transparent;
    cursor: pointer;
}

.menu-item:hover {
    background: #FFFFFF;
    border: 1px solid #E6E6E6;
}

.menu-item.active {
    background: #FFFFFF;
    border: 1px solid #E6E6E6;
}

.time-display {
    padding: 1px 2px;
    margin-left: auto;
    font-size: 10px;
    color: #989898;
    cursor: pointer;
}

.desktop {
    position: relative;
    height: calc(100vh - 18px);
    background: #FFFFFF;
}

.window {
    position: absolute;
    background: #FFFFFF;
    border: 1px solid #E6E6E6;
    min-width: 200px;
    min-height: 100px;
    will-change: transform;
}

.window-title {
    background: #FFFFFF;
    color: #989898;
    padding: 1px;
    font-size: 10px;
    border-bottom: 1px solid #E6E6E6;
    cursor: move;
    user-select: none;
    touch-action: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 14px;
}

.close-button {
    background: #FFFFFF;
    color: #989898;
    border: 1px solid #E6E6E6;
    width: 12px;
    height: 12px;
    cursor: pointer;
    font-size: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-weight: normal;
}

.window-content {
    padding: 2px;
    color: #989898;
    font-size: 10px;
    line-height: 1.2;
    overflow-y: auto;
    height: calc(100% - 16px);
    background: #FFFFFF;
}

.context-menu {
    position: absolute;
    background: #FFFFFF;
    border: 1px solid #E6E6E6;
    z-index: 9999;
    min-width: 80px;
    font-size: 10px;
}

.context-menu .menu-item {
    padding: 2px 4px;
    font-size: 10px;
    border: none;
    display: block;
    width: 100%;
    margin: 0;
}

.context-menu .menu-item:hover {
    color: #989898;
    background: #E6E6E6;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #E6E6E6;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover, ::-webkit-scrollbar-thumb:active {
    background: #989898;
}

::-webkit-scrollbar-corner {
    background: transparent;
}

::selection {
    background: #E6E6E6;
    color: #989898;
}

::-moz-selection {
    background: #E6E6E6;
    color: #989898;
}