/* ================================
   DOWNLOAD BUTTON (Adaptive Text)
================================ */
.vicinity-download-button {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 9px 18px;
  font-size: clamp(12px, 2vw, 15px); /* Adaptive font size */
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
}

/* Hover effect */
.vicinity-download-button:hover {
  background: #111;
  transform: scale(1.03);
}

/* ================================
   DOWNLOAD PROGRESS BAR
================================ */
.vicinity-progress-container {
  width: 100%;
  background: #e0e0e0;
  border-radius: 6px;
  height: 6px;
  margin-top: 6px;
  overflow: hidden;
}

.vicinity-progress-bar {
  height: 100%;
  width: 0%;
  background: #000;
  border-radius: 6px;
  transition: width 0.2s ease;
}
