body, html {
    height: 100%;
    overflow: hidden;
    padding: 0;
    margin: 0;
    font-family: 'MS Sans Serif';
    background-color: rgb(255, 255, 242);
    color: rgba(255, 255, 255, 0.304);
}

.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: 0;
    top: 20px; /* Add headroom above the icons */
    width: 72px;
    z-index: 9999;
}

.ui-icon {
    text-align: center;
    width: 72px;
    margin-bottom: 10px; /* Add some space between icons */
}

.ui-icon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ui-icon-container img {
    display: block;
    margin-bottom: 5px; /* Space between icon and text */
}

.ui-icon-container span {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 8%; /* Adjust the font size for all folder text */
    color: black; /* Change the folder text color to black */
}

.start-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #c0c0c0;
    padding: 5px;
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
}

.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: silver;
    border: 1px solid gray;
    box-shadow: inset 1px 1px #dfdfdf, 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-image: url('start-button.png');
    width: 25px;
    height: 7px;
}

.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;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full viewport height */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.logo-container img {
    width: 200px; /* Fixed width */
    height: 200px; /* Fixed height */
    image-rendering: pixelated; /* Nearest neighbor upscaling */
    opacity: 0.5; /* 50% opacity */
    transition: opacity 10s ease-in; /* Fade-in effect */
}

.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 */
}