@font-face {
    font-family: "MSW98UI";
    src: url("fonts/MSW98UI-Bold.woff2") format("woff2"),
    url("fonts/MSW98UI-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "MSW98UI";
    src: url("fonts/MSW98UI-Regular.woff2") format("woff2"),
    url("fonts/MSW98UI-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}

html, body {
    height: 100%;
    overflow: hidden;
}

body {
    font-family: "MSW98UI", sans-serif;
    background-color: #1eacac;
}

.desktop {
    grid-template-columns: repeat(auto-fill, 90px);
    gap: 56px;

    padding: 20px;

    width: 100%;
    height: calc(100vh - 40px);

    align-content: start;
    justify-content: start;
}


.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;

    height: 40px;
    box-sizing: border-box;

    background: linear-gradient(
            to bottom,
            #d6d6d6 0%,
            #d6d6d6 20%,
            #d9d9d9 90%
    );

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 10px;

    border-top: 1px solid #ffffff;

    overflow: hidden;
}

.ComputerInformationContent {
    background-color: black !important;
    width: 848px;
    height: 430px;

    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #7c7c7c;
    color:white;
}

.advertisement {
    background-color: #a5a5a5 !important;
    width: 300px;
    height: 250px;

    display: flex;
    align-items: stretch;
    justify-content: center;
    overflow: hidden;
    border: 2px solid #7c7c7c;

    padding: 0 !important;
    margin: 0 !important;
}


.advertisement img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.helpMenu {
    background-color: white !important;
    width: 553px;
    height: 300px;

    display: flex;
    align-items:  center;
    justify-content: flex-start;
    border: 2px solid #7c7c7c;
    color:black;
}



.desktop-window {
    position: absolute;
    background: #fffff;
    border: 2px solid #fff;
    min-width: 200px;
    min-height: 150px;
    user-select: none;
    box-shadow:
             4px 4px 8px rgba(0, 0, 0, 0.25),
             4px 8px 4px rgba(0, 0, 0, 0.25);
}

.window-titlebar {
    background: #d9d9d9;
    color: black;
    padding: 4px;
    font-weight: bold;

    display: flex;
    justify-content: space-between;
    align-items: center;

    cursor: move;
}

.resizable {
    resize: both;
    overflow: auto;
}

.window-content {
    padding: 8px;
    background: #d9d9d9;
}

.window-close {
    border-radius: 0 !important;

    padding: 0 6px;
    min-width: auto;

    background: #c0c0c0;
    border-top: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
    border-right: 1px solid #7a7a7a;
    border-bottom: 1px solid #7a7a7a;
    color: black;

    font-weight: bold;
    cursor: pointer;
}

.status-box {
    display: flex;
    align-items: center;
    gap: 6px;

    background-color: #ffffff;
    padding: 2px 8px;
    border: 1px solid #888;
    border-radius: 3px;

    font-size: 12px;
    white-space: nowrap;

    box-shadow:
            inset 2px 2px 4px rgba(0, 0, 0, 0.25),
            inset 2px 4px 2px rgba(0, 0, 0, 0.25);
}

.start-button {
    height: 100%;
    width: 90px;
    padding: 0 10px;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;

    gap: 6px;

    background: #d7d7d7;

    border-top: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
    border-right: 1px solid #7a7a7a;
    border-bottom: 1px solid #7a7a7a;

    font-weight: bold;
    box-sizing: border-box;

    cursor: pointer;
}

.start-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.start-text {
    text-align: left;
    line-height: 1;
}

.start-button .icon-inner {
    justify-content: flex-start;
    align-items: center;
}

.start-button:active {
    border-top: 1px solid #7a7a7a;
    border-left: 1px solid #7a7a7a;
    border-right: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
}


.icon-button {
    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
}

.icon-desktop {
    width: 90px;
    min-height: 90px;
}

.icon-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 4px;
}


.icon-desktop .icon-image {
    width: 48px;
    height: 48px;
}


.icon-label {
    text-align: center;
    font-size: 16px;
    color: white;
}


.icon-desktop:hover .icon-inner {
    background-color: rgba(0, 0, 255, 0.15);
    border-radius: 4px;
}

.icon-taskbar {
    height: 100%;
    min-height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 6px;
    box-sizing: border-box;
}

.icon-taskbar .icon-inner {
    flex-direction: row;
    gap: 6px;
}


.icon-taskbar .icon-image {
    width: 18px;
    height: 18px;
}

.icon-taskbar .icon-label {
    display: none;
}

.icon-taskbar:hover {
    background: rgba(0, 0, 255, 0.15);
}

.icon-bg {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 2px;
}