.cloud-uploader-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: #f9f9f9;
}

.upload-area {
  margin-bottom: 20px;
}

#cloud-uploader-files {
  display: none;
}

.drop-zone {
  border: 2px dashed #ccc;
  border-radius: 5px;
  padding: 40px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

.drop-zone--over {
  border-color: #4caf50;
  background-color: rgba(76, 175, 80, 0.1);
}

.drop-zone__prompt {
  color: #666;
  font-size: 16px;
}

.upload-button {
  background: #4caf50;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
}

.upload-button:hover {
  background: #45a049;
}

.upload-button:disabled {
  background: #cccccc;
  cursor: not-allowed;
}

.progress-container {
  margin-top: 20px;
  background: #f1f1f1;
  border-radius: 5px;
  overflow: hidden;
}

.progress-bar {
  height: 20px;
  background: #4caf50;
  width: 0%;
  transition: width 0.3s;
}

.progress-text {
  text-align: center;
  margin-top: 5px;
  font-size: 14px;
}

.file-list, .uploaded-files-list {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.file-list li, .uploaded-file {
  padding: 5px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
}

.uploaded-file {
  align-items: center;
  padding: 10px;
}

.file-info {
  flex: 1;
}

.file-name {
  display: block;
  font-weight: bold;
}

.file-size {
  font-size: 12px;
  color: #666;
}

.file-actions a,
.file-actions button {
  margin-left: 10px;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 14px;
  cursor: pointer;
}

.view-link {
  background: #2196f3;
  color: white;
  text-decoration: none;
}

.copy-link {
  background: #ff9800;
  color: white;
  border: none;
}

.upload-error {
  color: #721c24;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  padding: 10px;
  border-radius: 4px;
  margin-top: 15px;
}