/* ============================================
   BACKGROUND NOTIFICATION PROGRESS
   ============================================ */
.active-uploads-container {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,0.2);
}

.active-upload-item {
  padding: 12px 16px;
  animation: slideIn 0.3s ease-out;
}

.active-upload-item .active-upload-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  margin-bottom: 8px;
}

.active-upload-item .active-upload-title {
  font-weight: 600;
  color: var(--accent-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 70%;
}

.active-upload-item .active-upload-percent {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.active-upload-item .progress-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}

.active-upload-item .progress-bar {
  height: 100%;
  background: var(--accent-gradient);
  border-radius: var(--radius-full);
  transition: width 0.3s ease-out;
  box-shadow: 0 0 10px rgba(129, 140, 248, 0.3);
}

.active-upload-file {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
