.file-uploader {
  border: 2px dashed #ddd;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  background-color: #f9f9f9;
  transition: border-color 0.3s ease;
  cursor: pointer;
}

.file-uploader:hover {
  border-color: #3b82f6;
}

.file-uploader.dragover {
  border-color: #3b82f6;
  background-color: #eff6ff;
}

.file-uploader input[type="file"] {
  display: none;
}

.file-uploader-text {
  color: #666;
  font-size: 14px;
  margin-bottom: 10px;
}

.file-uploader-icon {
  font-size: 24px;
  color: #999;
  margin-bottom: 10px;
}

.file-list {
  margin-top: 15px;
}

.file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 5px;
}

.file-item-name {
  flex: 1;
  margin-right: 10px;
}

.file-item-remove {
  background: none;
  border: none;
  color: #ef4444;
  cursor: pointer;
  font-size: 16px;
} 