/* win95.css – Stil för fönster i Windows 95-stil */

body {
  background-color: #008080; /* Win95 standardbakgrund */
  font-family: Verdana, Arial, sans-serif;
  color: black;
  overflow: hidden;
}

#desktop {
  width: 100vw;
  height: 100vh;
  position: relative;
  background-image: none;
  padding: 10px;
}

.icon {
  display: inline-block;
  width: 72px;
  text-align: center;
  margin: 10px;
  cursor: pointer;
  color: white;
  font-family: Verdana, Arial, sans-serif;
  font-size: 12px;
}

.icon img {
  width: 32px;
  height: 32px;
  display: block;
  margin: 0 auto 5px;
}

.window {
  position: absolute;
  background-color: #C0C0C0;
  border: 2px solid #000000;
  width: 400px;
  box-shadow: 2px 2px #666;
  z-index: 10;
}

.title-bar {
  background-color: #000080;
  color: white;
  padding: 4px 6px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: move;
  user-select: none;
}

.title-bar .title {
  font-size: 14px;
}

.title-bar .close-btn {
  background-color: #C0C0C0;
  color: black;
  border: 1px solid #666;
  width: 18px;
  height: 18px;
  text-align: center;
  line-height: 16px;
  font-weight: bold;
  cursor: pointer;
}

.window-content {
  padding: 0px;
  height: 200px;
  overflow: auto;
  background-color: #FFFFFF;
  font-size: 14px;
  color: black;
}

.window iframe {
  width: 100%;
  height: 100%;
  border: none;
}
