body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: url('../media/background.png') no-repeat center center fixed;
  background-size: cover;
  overflow: hidden; 
}

.desktop-icons {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  flex-wrap: wrap;
  width: 100%; 
}

.app-icon {
  display: inline-block;
  text-align: center;
  margin: 15px;
  cursor: pointer;
  width: 80px;
}

.app-image {
  width: 64px;
  height: 64px;
  display: block;
  margin: 0 auto;
}

.app-label {
  display: block;
  font-size: 12px;
  color: black;
  margin-top: 5px;
  white-space: nowrap;
}

.window {
  width: 400px;
  height: 300px;
  background-color: white;
  position: absolute;
  top: 50px;
  left: 50px;
  border: 2px solid black;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
  display: none;
  z-index: 10;
}

.window-header {
  background-color: #ddd;
  padding: 10px;
  cursor: move;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.window-body {
  padding: 10px;
  overflow-y: auto; 
  height: calc(100% - 40px); 
}

.close-btn {
  background-color: red;
  color: white;
  border: none;
  cursor: pointer;
  padding: 5px 10px;
}

.window.active {
  display: block;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul li {
  padding: 5px;
  cursor: pointer;
  background-color: #f0f0f0;
  margin-bottom: 5px;
  border: 1px solid #ccc;
}

ul li:hover {
  background-color: #ddd;
}

#email-list ul {
  list-style-type: none;
  padding: 0;
}

#email-list ul li {
  padding: 10px;
  background-color: #f0f0f0;
  border-bottom: 1px solid #ccc;
  cursor: pointer;
}

#email-list ul li:hover {
  background-color: #e0e0e0;
}

#email-details {
  padding: 10px;
  background-color: #fff;
}

#email-details button {
  display: block;
  margin-bottom: 10px;
}

#email-content {
  font-size: 14px;
  line-height: 1.6;
}

.folder-icon {
  display: inline-block;
  text-align: center;
  margin: 15px;
  cursor: pointer;
  width: 80px;
}

.folder-image {
  width: 64px;
  height: 64px;
  display: block;
  margin: 0 auto;
}

.folder-label {
  display: block;
  font-size: 12px;
  color: black;
  margin-top: 5px;
  white-space: nowrap;
}

.folder-window {
  width: 400px;
  height: 300px;
  background-color: white;
  position: absolute;
  top: 50px;
  left: 50px;
  border: 2px solid black;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
  display: none;
}

.folder-window .window-header {
  background-color: #ddd;
  padding: 10px;
  cursor: move;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.folder-window .window-body {
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  overflow-y: auto; 
}

.folder-app-icon {
  display: inline-block;
  text-align: center;
  margin: 10px;
  cursor: pointer;
}

.folder-app-image {
  width: 50px;
  height: 50px;
}

.folder-app-label {
  display: block;
  font-size: 12px;
  color: black;
  margin-top: 5px;
  white-space: nowrap;
}

