* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
  width: 100%;
  height: 100%;
  background-color: #f0f0f0; 
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  overflow: hidden; 
}

.desktop-container {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 20px;
}

.file-item {
  position: absolute;
  width: max-content;
  max-width: 160px;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: grab;
  user-select: none;
  transition: transform 0.1s ease;
}

.file-item:active {
  transform: scale(1.02); 
}

.file-preview {
  background-color: #ffffff54;
  padding: 5px;
  border: 1px solid #dcdcdc;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
}

.file-preview img {
  max-width: 110px;
  max-height: 150px;
  object-fit: contain;
  display: block;
}

.file-label {
  margin-top: 8px;
  font-size: 11px;
  color: #333333;
  text-align: center;
  word-break: break-all;
  line-height: 1.3;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
}

.dimensions {
  color: #8a8a8f;
  font-size: 10px;
}
