#skygo-dropzone {
  border: 2px dashed #aaa;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  border-radius: 8px;
  background: #1a1a1a;
  color: #eee;
  margin-bottom: 40px;
  margin-top: 40px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

#skygo-dropzone.dragover {
  background: #333;
  border-color: #6e4caf;
}

#skygo-dropzone.dragging {
  border: 2px dashed #2196f3;
  background-color: rgba(33, 150, 243, 0.05);
  transition: all 0.2s ease-in-out;
}

.skygo-progress {
  font-weight: bold;
  margin-left: 10px;
  color: #ccc;
}

.skygo-actions button {
  margin-left: 8px;
  padding: 4px 8px;
  background: #4caf50;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.skygo-actions button:last-child {
  background: #f44336;
}

.skygo-actions button:hover {
  filter: brightness(1.1);
}

#skygo-uploader {
  margin-top: 20px;
}

#skygo-upload-list > div {
  padding: 6px;
  border-bottom: 1px solid #ccc;
  display: flex;
  align-items: center;
  gap: 15px;
}

#skygo-upload-list img {
  margin-right: 10px;
  border-radius: 4px;
  max-height: 60px;
}

.dragging {
  outline: 3px dashed #00e0ff;
  background-color: rgba(0, 224, 255, 0.05);
}

#skygo-upload-list-wrapper h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.skygo-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  gap: 8px;
}

.skygo-item img {
  max-height: 60px;
  border-radius: 6px;
  box-shadow: 0 0 4px rgba(0,0,0,0.3);
}