/* Minimal Uppy styles - extracted from @uppy/core and @uppy/dashboard */
.uppy-Root {
  font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

.uppy-Dashboard {
  position: relative;
}

.uppy-Dashboard-inner {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
}

.uppy-Dashboard--modal {
  z-index: 50;
}

.uppy-Dashboard-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 50;
}

.uppy-DashboardContent-bar {
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.uppy-Dashboard-files {
  margin: 20px 0;
}

.uppy-Dashboard-Item {
  display: flex;
  align-items: center;
  padding: 10px;
  border: 1px solid #eee;
  border-radius: 4px;
  margin-bottom: 10px;
}

.uppy-Dashboard-Item-progress {
  width: 100%;
  height: 4px;
  background: #eee;
  border-radius: 2px;
  overflow: hidden;
  margin-top: 8px;
}

.uppy-Dashboard-Item-progressIndicator {
  height: 100%;
  background: #2563eb;
  transition: width 0.3s ease;
}
