body {
    user-select: none;
    margin: 0;
    padding: 0;
    font-family: Helvetica, Arial, sans-serif; 
	background: center/cover no-repeat fixed;
	transition: background-image 0.5s ease-in-out;
}

#loadingContainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333; /* Grey background color */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

#loadingLogo {
    width: 150px;
    height: 150px;
    margin-bottom: 80px;
}

#loadingBarContainer {
    width: 100%;
    display: flex;
    justify-content: center; /* Center the loading bar horizontally */
}

#outerLoadingBar {
    width: 360px;
    height: 12px;
    border: 1px solid #000; /* Black border for the outer loading bar */
}

#innerLoadingBar {
    height: 100%;
    width: 0;
    background-color: #3498db; /* Blue color for the inner loading bar */
}

#taskbar {
    position: fixed;
    height: 32px;
    background-color: #f0f0f0; /* Off-white color */
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 2;
}

#taskbar {
    position: fixed;
    top: 0;
    right: 0; /* Fix the taskbar to the right side of the screen */
    height: 32px;    
	background-color: rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(10px);
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 2;
}

#taskbarContent {
    position: fixed;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Align items to the right */
    margin-right: 2px;
}

#logoContainer {
	margin-top: 3px;
    margin-left: 5px; /* Add some space between the logo and date/time */
}

#dateTimeContainer {
	font-size: 14px;
    display: flex;
    align-items: center;
}

#time,
#date {
    font-family: Helvetica, Arial, sans-serif; 
	margin-top: -2px;
    margin-left: 3.5px; 
	margin-right: 3.5px;
}

#separator {
    width: 1px;
    height: 12px; /* Adjust the height as needed */
    background-color: #000; /* Black color for the separator */
    margin: 0 5px; /* Adjust the margin as needed */
}

#startButton {
    margin: 4px 1px 1px 1px; /* 4px top, 1px right, 1px bottom, 1px left */
    cursor: pointer;
    z-index: 2;
}

#startButton.active {
    z-index: 2;
}

#startImage {
    transition: opacity 0.3s ease; /* Add transition for image opacity */
}

#startMenu {
    position: fixed;
    top: 32px; /* Adjusted height */
    left: -242px;
    width: 240px; /* Adjusted width */
    height: 360px; /* Adjusted height */
    background-color: rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: left 0.3s ease; /* Add transition for sliding effect */
    z-index: 1;
    display: flex; /* Use flexbox to arrange child elements */
}

.startAppButton {
	font-weight: bold;
	width: 100%;
	border: none;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 4px;
    margin-bottom: 0;    
	background-color: rgba(0, 0, 0, 0.05);
    border-radius: 0px;
    transition: background-color 0.3s ease; /* Add transition for hover effect */
}

.startAppButton img {
    margin-right: 8px; /* Add some space between image and text */
}

.startAppButton:hover {
    background-color: rgba(0, 0, 0, 0.30);
	border: none;
}

#appsBox {
    flex: 4; /* Takes up 4/5 of the available space */
    position: relative; /* Position relative for positioning separator */
    overflow: hidden; /* Hide content overflow */
}

.separator {
    width: 1px;
    height: 100%;
    background-color: #000; /* Black color for the separator */
}

#optionsBox {
    flex: 1; /* Takes up 1/5 of the available space */
    position: relative; /* Position relative for positioning separator */
    overflow: hidden; /* Hide content overflow */
    display: flex; /* Use flexbox to center the button */
    flex-direction: column; /* Stack child elements vertically */
    align-items: center; /* Center horizontally */
    justify-content: flex-end; /* Align items to the bottom */
}

#powerButton {
    margin-bottom: 10px; /* 10px space from the bottom */
    cursor: pointer;
    border: none;
    background: none;
    transition: transform 0.3s ease; /* Add transition for smooth scaling */
}

#powerButton:hover {
    transform: scale(1.1); /* Slightly increase size on hover */
}

#settingsButton {
    margin-bottom: 10px;
    cursor: pointer;
    border: none;
    background: none;
    transition: transform 0.3s ease; /* Add transition for smooth scaling */
}

#settingsButton:hover {
    transform: scale(1.1); /* Slightly increase size on hover */
}
#creditsButton {
    margin-bottom: 10px; /* 10px space from the bottom */
    cursor: pointer;
    border: none;
    background: none;
    transition: transform 0.3s ease; /* Add transition for smooth scaling */
}

#creditsButton:hover {
    transform: scale(1.1); /* Slightly increase size on hover */
}
#infoButton {
    margin-bottom: 10px; /* 10px space from the bottom */
    cursor: pointer;
    border: none;
    background: none;
    transition: transform 0.3s ease; /* Add transition for smooth scaling */
}

#infoButton:hover {
    transform: scale(1.1); /* Slightly increase size on hover */
}

#shutdownOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 8;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4px); /* Add backdrop filter for blur effect */
}

#shutdownBox {
  width: 360px;
  height: 100px;
  background: #f0f0f0; /* Off-white color */
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

#shutdownText {
  font-size: 18px;
  margin-top: 25px;
  text-align: left;
}

#shutdownButtons {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

#shutdownButtons button {
  margin-left: 10px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#taskbarTabs {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 10px; /* Add some padding for better appearance */
}

.taskbarTab {
    background-color: #666; /* Dark gray background color for the tabs */
    color: #fff; /* White text color */
    border-radius: 5px; /* Rounded corners for tabs */
    margin: 0px 4px 1px 4px;
    display: flex;
    align-items: center;
    padding: 4px 4px;
    cursor: pointer;
	height: 18px;
}

.tabIcon {
    margin-right: 5px; /* Add some space between icon and text */
}

.tabCloseButton {
    cursor: pointer;
    margin-left: 3px;  /* OG Value before removing = 5 */
	padding: 0px;  /* OG Value before removing = 5 */
}

.iframe {
    user-select: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

																	/* Settings Window */

.settingswindow {
    position: fixed;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 5;
    user-select: none;
	background-filter: none;
}

.settingswindowTitleBar {
    height: 32px;
    width: 230px;
    background-color: #666;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5px;
}

.settingswindowTitle {
    margin-left: -2px;
    font-size: 20px;
}

.settingswindowButton {
    cursor: pointer;
}

#settingstitleBarButtons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

#minimizeButton,
#closeButton {
    cursor: pointer;
    transition: transform 0.5s ease;
}

.settingswindowContent {
	color: #000;
    padding: 10px;
}

#settingsWindow {
	left: 30%;
    top: 30%;
	height: 532px;
    width: 240px;
    background-color: rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(10px);
}
.settingsSection {
    margin-bottom: 20px;
}

.settingsSection h3 {
    margin-top: 0px;
    margin-bottom: 10px;
    font-size: 16px;
}

.setting {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.setting label {
    margin-right: 10px; /* Adjust the spacing between the label and toggle */
}

#darkModeToggle {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 30px; /* Adjust the width as needed */
    height: 30px; /* Adjust the height as needed */
    background-color: #ccc; /* Default background color */
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 5px; /* Rounded corners for the toggle */
    position: relative;
}

#darkModeToggle:checked {
    background-color: #3498db; /* Blue color when toggled */
}

#darkModeToggle::before {
    content: '';
    position: absolute;
    width: calc(50% + 1px);
    height: 100%;
    top: 0;
    left: 0;
    background-color: white; /* White color for the toggle indicator */
    border-radius: 5px; /* Rounded corners for the indicator */
    transition: transform 0.3s ease, background-color 0.3s ease; /* Add transition for smooth animation */
}

#darkModeToggle:checked::before {
    transform: translateX(100%); /* Move the indicator to the right when toggled */
}

#textColourToggle {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 30px; /* Adjust the width as needed */
    height: 30px; /* Adjust the height as needed */
    background-color: #ccc; /* Default background color */
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 5px; /* Rounded corners for the toggle */
    position: relative;
}

#textColourToggle:checked {
    background-color: #3498db; /* Blue color when toggled */
}

#textColourToggle::before {
    content: '';
    position: absolute;
    width: calc(50% + 1px);
    height: 100%;
    top: 0;
    left: 0;
    background-color: white; /* White color for the toggle indicator */
    border-radius: 5px; /* Rounded corners for the indicator */
    transition: transform 0.3s ease, background-color 0.3s ease; /* Add transition for smooth animation */
}

#textColourToggle:checked::before {
    transform: translateX(100%); /* Move the indicator to the right when toggled */
}

#whiteIconToggle {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 30px; /* Adjust the width as needed */
    height: 30px; /* Adjust the height as needed */
    background-color: #ccc; /* Default background color */
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 5px; /* Rounded corners for the toggle */
    position: relative;
}

#whiteIconToggle:checked {
    background-color: #3498db; /* Blue color when toggled */
}

#whiteIconToggle::before {
    content: '';
    position: absolute;
    width: calc(50% + 1px);
    height: 100%;
    top: 0;
    left: 0;
    background-color: white; /* White color for the toggle indicator */
    border-radius: 5px; /* Rounded corners for the indicator */
    transition: transform 0.3s ease, background-color 0.3s ease; /* Add transition for smooth animation */
}

#whiteIconToggle:checked::before {
    transform: translateX(100%); /* Move the indicator to the right when toggled */
}

.wallpaperSelector {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
}

.wallpaperImage {
    width: 100%;
    height: auto;
    cursor: pointer;
    border-radius: 8px;
    transition: opacity 0.3s ease;
}

.wallpaperImage:hover {
    opacity: 0.8;
}

																					/* credits Window */

.creditswindow {
    position: fixed;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 5;
    user-select: none;
	background-filter: none;
}

.creditswindowTitleBar {
    height: 32px;
    width: 230px;
    background-color: #666;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5px;
}

.creditswindowTitle {
    margin-left: -2px;
    font-size: 20px;
}

.creditswindowButton {
    cursor: pointer;
}

#creditstitleBarButtons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

#minimizeButton,
#closeButton {
    cursor: pointer;
    transition: transform 0.5s ease;
}

.creditswindowContent {
	color: #000;
}

#creditsWindow {
	left: 30%;
    top: 30%;
	height: 442px;
    width: 240px;
    background-color: rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(10px);
}
.creditsSection {
    margin-bottom: 20px;
}

.creditsSection h3 {
    margin-top: 0px;
    margin-bottom: 10px;
    font-size: 16px;
}

.creditsiframe {
  user-select: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 410px;
  border: none;
  pointer-events: all;
}

																					/* virtualcube Window */

.virtualcubewindow {
    position: fixed;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 5;
    user-select: none;
	background-filter: none;
}

.virtualcubewindowTitleBar {
    height: 32px;
    width: 920px;
    background-color: #666;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5px;
}

.virtualcubewindowTitle {
    margin-left: -2px;
    font-size: 20px;
}

.virtualcubewindowButton {
    cursor: pointer;
}

#virtualcubetitleBarButtons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

#minimizeButton,
#closeButton {
    cursor: pointer;
    transition: transform 0.5s ease;
}

.virtualcubewindowContent {
	color: #000;
}

#virtualcubeWindow {
	left: 10%;
    top: 10%;
	height: 680px;
    width: 930px;
    background-color: rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(10px);
}
.virtualcubeSection {
    margin-bottom: 20px;
}

.virtualcubeiframe {
  user-select: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 648px;
  border: none;
  pointer-events: all;
}
																					/* gamecenter Window */

.gamecenterwindow {
    position: fixed;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 5;
    user-select: none;
	background-filter: none;
}

.gamecenterwindowTitleBar {
    height: 32px;
    width: 920px;
    background-color: #666;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5px;
}

.gamecenterwindowTitle {
    margin-left: -2px;
    font-size: 20px;
}

.gamecenterwindowButton {
    cursor: pointer;
}

#gamecentertitleBarButtons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

#minimizeButton,
#closeButton {
    cursor: pointer;
    transition: transform 0.5s ease;
}

.gamecenterwindowContent {
	color: #000;
}

#gamecenterWindow {
	left: 15%;
    top: 15%;
	height: 680px;
    width: 930px;
    background-color: rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(10px);
}
.gamecenterSection {
    margin-bottom: 20px;
}

.gamecenteriframe {
  user-select: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 648px;
  border: none;
}
																				/* info Window */

.infowindow {
    position: fixed;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 5;
    user-select: none;
	background-filter: none;
}

.infowindowTitleBar {
    height: 32px;
    width: 230px;
    background-color: #666;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5px;
}

.infowindowTitle {
    margin-left: -2px;
    font-size: 20px;
}

.infowindowButton {
    cursor: pointer;
}

#infotitleBarButtons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

#minimizeButton,
#closeButton {
    cursor: pointer;
    transition: transform 0.5s ease;
}

.infowindowContent {
	color: #000;
}

#infoWindow {
	left: 30%;
    top: 30%;
	height: 442px;
    width: 240px;
    background-color: rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(10px);
}
.infoSection {
    margin-bottom: 20px;
}
.infoiframe {
  user-select: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 410px;
  border: none;
  pointer-events: all;
}
																	/* paint Window */

.paintwindow {
    position: fixed;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 5;
    user-select: none;
	background-filter: none;
}

.paintwindowTitleBar {
    height: 32px;
    width: 920px;
    background-color: #666;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5px;
}

.paintwindowTitle {
    margin-left: -2px;
    font-size: 20px;
}

.paintwindowButton {
    cursor: pointer;
}

#painttitleBarButtons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

#minimizeButton,
#closeButton {
    cursor: pointer;
    transition: transform 0.5s ease;
}

.paintwindowContent {
	color: #000;
}

#paintWindow {
	left: 15%;
    top: 15%;
	height: 739px;
    width: 930px;
    background-color: rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(10px);
}
.paintSection {
    margin-bottom: 20px;
}

.paintiframe {
  user-select: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 707px;
  border: none;
}

																				/* internet Window */

.internetwindow {
    position: fixed;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 5;
    user-select: none;
	background-filter: none;
}

.internetwindowTitleBar {
    height: 32px;
    width: 920px;
    background-color: #666;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5px;
}

.internetwindowTitle {
    margin-left: -2px;
    font-size: 20px;
}

.internetwindowButton {
    cursor: pointer;
}

#internettitleBarButtons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

#minimizeButton,
#closeButton {
    cursor: pointer;
    transition: transform 0.5s ease;
}

.internetwindowContent {
	color: #000;
}

#internetWindow {
	left: 28%;
    top: 18%;
	height: 680px;
    width: 930px;
    background-color: rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(10px);
}
.internetSection {
    margin-bottom: 20px;
}

.internetiframe {
  user-select: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 648px;
  border: none;
}
															/* mycomputer Window */

.mycomputerwindow {
    position: fixed;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 5;
    user-select: none;
	background-filter: none;
}

.mycomputerwindowTitleBar {
    height: 32px;
    width: 640px;
    background-color: #666;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5px;
}

.mycomputerwindowTitle {
    margin-left: -2px;
    font-size: 20px;
}

.mycomputerwindowButton {
    cursor: pointer;
}

#mycomputertitleBarButtons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

#minimizeButton,
#closeButton {
    cursor: pointer;
    transition: transform 0.5s ease;
}

.mycomputerwindowContent {
	color: #000;
}

#mycomputerWindow {
	left: 30%;
    top: 30%;
	height: 632px;
    width: 650px;
    background-color: rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(10px);
}
.mycomputerSection {
    margin-bottom: 20px;
}

.mycomputeriframe {
  user-select: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 600px;
  border: none;
}