/* 懸浮更新進度條樣式 */
.update-progress-container {
  background: rgba(0, 0, 0, 0);
  padding: 10px 20px;
  z-index: 1000;
  backdrop-filter: blur(5px);
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
  border-radius: 12px;
  margin-bottom: 10px;
}

/* 點擊反饋效果 */
.update-progress-container:hover {
  background: rgba(0, 0, 0, 0.432);
}

.update-progress-container:active {
  background: rgba(0, 0, 0, 0.432);
}

.update-progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 5px;
}

.update-progress-fill {
  height: 100%;
  background: #007bff;
  border-radius: 3px;
  width: 100%;
  transition: width 1s linear;
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
}

.update-progress-fill.no-trans {
  transition: none !important;
}

.update-progress-text {
  color: white;
  font-size: clamp(12px, 2.5vw, 14px);
}

.route-title-text {
  color: #0084ffc7;
  font-weight: bold;
}