body {
  font-family: 'Windows Regular', sans-serif;
  margin: 0;
  padding: 0;
  overflow: hidden; 
  background-color: #008080; 
}

@font-face {
  font-family: 'Windows Regular';
  src: url('Windows Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

#desktop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 30px); 
  overflow: hidden;
  background-image: url('wallpaper3.jpg'); 
  background-size: cover;
  background-position: center;
  display: flex; 
}

#desktop > * {
  flex: none; 
}

#taskbar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background-color: #c0c0c0;
  border-top: 2px solid white;
  display: flex;
  align-items: center;
  box-shadow: inset 0 2px #808080; 
}

#start-button {
  background-color: #c0c0c0;
  border: 2px outset white;
  padding: 2px 10px;
  margin-left: 5px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: inset 0 0 0 1px #000;
}

#start-menu {
  position: absolute;
  bottom: 30px; 
  left: 0;
  width: 200px;
  background-color: #c0c0c0;
  border: 2px solid white;
  border-right: 2px solid #808080;
  border-bottom: 2px solid #808080;
  display: none; 
  flex-direction: column;
  z-index: 20; 
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

#start-menu.active {
  display: flex; 
}

.start-menu-item {
  padding: 5px 10px;
  cursor: pointer;
  border: 1px solid transparent; 
}

.start-menu-item:hover {
  background-color: #000080; 
  color: white;
  border: 1px dotted white;
}

#task-list {
  flex-grow: 1;
  padding-left: 10px;
  white-space: nowrap; 
  overflow-x: auto; 
}

.task-button {
  background-color: #c0c0c0;
  border: 1px solid #808080;
  padding: 2px 10px;
  margin-right: 5px;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px #fff;
}

#system-tray {
  margin-right: 5px;
  font-size: 0.8em;
}

#clock {
  /* Add clock styling here */
}

.app-window {
  position: absolute;
  top: 50px;
  left: 10px; 
  width: 400px;
  height: 300px;
  background-color: #fff;
  border: 2px solid #808080;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  display: none; 
  z-index: 10;
}

.title-bar {
  background-color: #c0c0c0;
  color: black;
  padding: 5px;
  border-bottom: 2px solid white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: grab; 
}

.title-bar-controls {
  display: flex;
  gap: 5px;
}

.close-button, .fullscreen-button {
  background-color: #c0c0c0;
  border: 1px solid #808080;
  padding: 0 5px;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px #fff;
}

.app-content {
  padding: 10px;
  overflow: auto;
  height: calc(100% - 30px); 
}

#frutiger-aero-app .app-content {
  text-align: center;
}

.frutiger-image {
  width: 100%;
  height: 150px;
  background-image: url('frutiger_aero_image.jpg'); 
  background-size: cover;
  margin-top: 10px;
}

#wallpaper-options {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

#wallpaper-options button {
  padding: 5px 10px;
  background-color: #c0c0c0;
  border: 1px solid #808080;
  cursor: pointer;
}

.desktop-icon {
  text-align: center;
  margin: 20px;
  cursor: pointer;
  position: relative; 
  z-index: 1; 
}

.desktop-icon img {
  width: 50px;
  height: 50px;
  display: block;
  margin: 0 auto 5px;
}

.app-window.fullscreen {
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 12 !important;
}

.setting-group {
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #c0c0c0;
  background-color: #f0f0f0;
}

.setting-label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.setting-input {
  width: 100%;
  padding: 5px;
  border: 1px solid #c0c0c0;
  box-sizing: border-box; 
}

.setting-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.setting-switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

#tutorial-text {
  display: none;
  margin-top: 10px;
  padding: 10px;
  border: 1px solid #c0c0c0;
  background-color: #fff;
  text-align: left;
}

#theme-options {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

#theme-options button {
  padding: 5px 10px;
  background-color: #c0c0c0;
  border: 1px solid #808080;
  cursor: pointer;
}

#theme-options button[data-theme="blue"] {
  background-color: #0078D7;
  color: white;
}

#assistant-app {
  width: 300px;
  height: 400px;
}

#assistant-chat-log {
  height: 300px;
  overflow-y: auto;
  padding: 10px;
  border: 1px solid #c0c0c0;
  background-color: #f9f9f9;
  margin-bottom: 10px;
}

#assistant-input {
  width: calc(100% - 80px);
  padding: 5px;
  border: 1px solid #c0c0c0;
}

#assistant-send {
  width: 70px;
  padding: 5px;
  background-color: #c0c0c0;
  border: 1px solid #808080;
  cursor: pointer;
}

#assistant-premade-questions {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 10px;
}

#assistant-premade-questions button {
  padding: 5px 10px;
  background-color: #c0c0c0;
  border: 1px solid #808080;
  cursor: pointer;
}

#app-store-app .app-content {
  padding: 10px;
}

#app-listings {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.app-listing {
  border: 1px solid #c0c0c0;
  padding: 10px;
  background-color: #f0f0f0;
}

.install-button {
  padding: 5px 10px;
  background-color: #c0c0c0;
  border: 1px solid #808080;
  cursor: pointer;
}