body, html {
    height: 100%;
    overflow: hidden;
    padding: 0;
    margin: 0;
    font-family: 'MS Sans Serif';
    background-color: #23272e;
    color: #e0e0e0;
}

.windows-container, .windows, .windows-header, .form-content, .icon-wrap {
    overflow: hidden;
}

.windows-container {
    position: relative;
    margin: 0 auto;
    padding: 50px 80px 79px;
    width: 100%;
    height: 100%;
}

.windows {
    background-color: #c6c6c6;
    border: 2px solid #000;
    height: 100%;
    position: relative;
}

.windows-header {
    background: navy;
    color: #fff;
    padding: 0.25em 0.75em;
    border: 1px solid silver;
    height: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.windows-button {
    background-color: silver;
    border: 2px solid #404040;
    padding: 0;
    height: 16px;
    width: 16px;
    cursor: pointer;
}

.form-content {
    padding: 10px;
    height: calc(100% - 25px);
}

.icon-wrap {
    border: 1px solid #000;
    height: 100%;
}

.icon-outer-container {
    border: 1px solid #7f7f7f;
    height: 100%;
    padding: 10px;
}

.icon-inner-container {
    border: 2px solid #404040;
    background: #fff;
    height: 100%;
    overflow-y: scroll;
}

.icon-inner-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.icon-item {
    display: inline-block;
    width: 68px;
    height: 68px;
    border: 1px solid #7f7f7f;
    margin: 5px;
    text-align: center;
}

.ui-desktop {
    position: absolute;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
    width: 72px;
    z-index: 9999;
}

.ui-icon {
    text-align: center;
    width: 72px;
    margin-bottom: 10px;
}

.ui-icon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    width: 100px;
    text-align: center;
}

.ui-icon-container img {
    width: 64px;
    height: 64px;
    display: block;
    margin: 0 auto;
}

.ui-icon-container span {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: black;
    margin-top: 5px;
    font-family: 'MS Sans Serif', sans-serif;
}

.start-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #181a20 !important;
    color: #e0e0e0 !important;
    padding: 5px;
    border-top: 1.5px solid #444;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.5);
}

.made-by {
    margin-right: 10px;
}

.bottom-left-text {
    margin-left: 10px;
}

.start-button-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    padding: 2px 6px;
    background-color: #23272e;
    border: 1px solid #444;
    box-shadow: inset 1px 1px #181a20, 1px 0 #000, 0 1px #000, 1px 1px #000;
}

.online-label {
    position: absolute;
    bottom: -10px; /* Position the label below the button */
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-family: 'MS Sans Serif', serif; /* Use the same font as the rest of the site */
    color: rgb(0, 0, 0); /* Make the label text green */
    text-transform: lowercase; /* Ensure the text is lowercase */
}

.start-button {
    background: #181a20 !important;
    border: 1.5px solid #444;
    padding: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    width: 28px;
}

.start-button:active {
    background: #23272e !important;
}

.start-bar-window, .made-by {
    height: 22px;
    line-height: 22px;
    padding: 0 10px;
    font-family: 'MS Sans Serif';
    color: #000;
}

.start-bar-window {
    border: 1px solid #000;
    box-shadow: inset 1px 1px grey;
}

.made-by {
    text-align: right;
    border: 1px solid gray;
}

.popup-window {
    display: none; /* Initially hidden */
    position: fixed; /* Fixed position to avoid affecting other elements */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid #000;
    background-color: #c0c0c0;
    box-shadow: 5px 5px 0 #000;
    z-index: 10000; /* High z-index to appear above other elements */
}

.popup-title-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #5f5f5f;
    color: #fff;
    padding: 5px;
    font-family: 'MS Sans Serif', Geneva, sans-serif;
    font-size: 14px;
}

.popup-title {
    margin: 0;
}

.popup-close-button {
    background-color: #c0c0c0;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.popup-content {
    padding: 10px;
    font-family: 'MS Sans Serif', Tahoma, Arial, sans-serif;
    font-size: 12px;
}

.popup-image {
    width: 40%; /* Scale down the image to 80% of its original size */
    height: auto;
    display: block;
    margin: 0 auto; /* Center the image */
}

.explorer-window {
    font-family: 'MS Sans Serif', sans-serif;
    background: #fff;
    border: 1px solid #aaa;
    height: 100%;
    width: 100%;
    color: #111;
    padding-bottom: 48px; /* Extra white space at the bottom */
}

.start-menu {
    position: absolute;
    bottom: 100%;
    left: 0;
    background: #23272e !important;
    color: #e0e0e0 !important;
    border: 2px solid #444 !important;
    display: none;
    min-width: 200px;
    box-shadow: 2px 2px 8px #000;
    z-index: 1001;
}

.start-menu-content {
    padding: 4px;
}

.start-menu-item {
    display: flex;
    align-items: center;
    padding: 4px;
    cursor: pointer;
    user-select: none;
    color: #e0e0e0 !important;
}

.start-menu-item:hover {
    background: #444a55 !important;
    color: #fff !important;
}

.start-menu-item img {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    /* filter: brightness(0.85) invert(0.85); */
}

.start-menu-separator {
    height: 2px;
    background: #444 !important;
    margin: 4px 0;
}

.hamburger-icon {
    width: 20px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.hamburger-icon span {
    display: block;
    width: 18px;
    height: 3px;
    background: #e0e0e0;
    border-radius: 2px;
}

.hamburger-icon {
    position: relative;
}

.hamburger-icon::before {
    position: absolute;
    top: 3px;
}

.hamburger-icon::after {
    position: absolute;
    bottom: 3px;
}

.hamburger-icon span {
    position: absolute;
    top: 8.5px;
}