
.gf-progress-container {
  margin-top: 10px;
}

.gf-progress {
  width: 100%;
  background: #e0e0e0;
  border-radius: 12px;
  position: relative;
  margin-bottom: 10px;
  height: 28px;
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.2);
}

.gf-progress .gf-bar {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #2196F3, #42A5F5);
  transition: width 0.4s ease;
}

.gf-progress .gf-percent {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  line-height: 28px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.gf-progress .gf-retry {
  position: absolute;
  right: 5px;
  top: 2px;
  background: #fff;
  border: 1px solid #ccc;
  font-size: 12px;
  border-radius: 4px;
  cursor: pointer;
  padding: 2px 6px;
}
.gf-progress .gf-retry:hover {
  background: #f5f5f5;
}
.gf-filename {
  font-size: 12px;
  margin-bottom: 5px;
  color: #444;
}
