/* VRIHATECH QR CODE - Plugin Styles */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@300;400;500&display=swap');

.vqr-wrapper {
  font-family: 'DM Sans', sans-serif;
  max-width: 1100px;
  margin: 30px auto;
  background: #0f0f1a;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
  color: #e8e8f0;
}

/* Header */
.vqr-header {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 22px 32px;
  border-bottom: 1px solid rgba(255,107,43,0.3);
}

.vqr-logo-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.vqr-brand-name {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #FF6B2B;
  letter-spacing: 3px;
  line-height: 1;
}

.vqr-brand-sub {
  display: block;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 2px;
  font-weight: 500;
  margin-top: 2px;
}

/* Body Layout */
.vqr-body {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 0;
  min-height: 600px;
}

/* Controls Panel */
.vqr-controls {
  padding: 28px 30px;
  background: #0f0f1a;
  border-right: 1px solid rgba(255,255,255,0.07);
  overflow-y: auto;
  max-height: 90vh;
}

/* Tabs */
.vqr-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.vqr-tab {
  padding: 7px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
}

.vqr-tab:hover {
  border-color: #FF6B2B;
  color: #FF6B2B;
}

.vqr-tab.active {
  background: #FF6B2B;
  border-color: #FF6B2B;
  color: white;
  font-weight: 600;
}

/* Tab Content */
.vqr-tab-content {
  display: none;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 6px;
}

.vqr-tab-content.active {
  display: flex;
}

.vqr-tab-content label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* Inputs */
.vqr-input {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 10px !important;
  padding: 10px 14px !important;
  color: #e8e8f0 !important;
  font-size: 0.88rem !important;
  font-family: 'DM Sans', sans-serif !important;
  width: 100% !important;
  box-sizing: border-box !important;
  transition: border-color 0.2s !important;
  outline: none !important;
  box-shadow: none !important;
}

.vqr-input:focus {
  border-color: #FF6B2B !important;
  background: rgba(255,107,43,0.05) !important;
}

.vqr-input option {
  background: #1a1a2e;
  color: #e8e8f0;
}

textarea.vqr-input {
  resize: vertical !important;
  min-height: 80px !important;
}

/* Divider */
.vqr-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 14px;
  color: rgba(255,255,255,0.25);
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  font-weight: 600;
  text-transform: uppercase;
}

.vqr-divider::before,
.vqr-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.08);
}

/* Customize Grid */
.vqr-customize-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.vqr-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.vqr-field label {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* Slider */
.vqr-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  outline: none;
}

.vqr-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  background: #FF6B2B;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 8px rgba(255,107,43,0.4);
}

.vqr-slider-val {
  font-size: 0.72rem;
  color: #FF6B2B;
  font-weight: 600;
}

/* Color Pickers */
.vqr-color-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 6px 12px;
}

.vqr-color {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  background: none;
  padding: 0;
}

.vqr-color-wrap span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  font-family: monospace;
}

/* Logo Upload */
.vqr-logo-upload-area {
  border: 2px dashed rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  background: rgba(255,255,255,0.02);
}

.vqr-logo-upload-area:hover,
.vqr-logo-upload-area.drag-over {
  border-color: #FF6B2B;
  background: rgba(255,107,43,0.04);
}

.vqr-drop-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.vqr-logo-upload-area p {
  margin: 4px 0;
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
}

.vqr-drop-sub {
  color: rgba(255,255,255,0.3) !important;
  font-size: 0.72rem !important;
}

.vqr-drop-hint {
  color: rgba(255,255,255,0.25) !important;
  font-size: 0.68rem !important;
  margin-top: 8px !important;
}

.vqr-btn-outline {
  background: transparent;
  border: 1px solid #FF6B2B;
  color: #FF6B2B;
  padding: 7px 18px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
  margin-top: 6px;
}

.vqr-btn-outline:hover {
  background: #FF6B2B;
  color: white;
}

/* Logo preview */
.vqr-logo-preview-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 12px;
}

#vqr-logo-preview-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 8px;
  background: white;
  padding: 4px;
}

.vqr-logo-fname {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin: 0 0 6px;
  word-break: break-all;
}

.vqr-btn-danger-sm {
  background: rgba(220,38,38,0.15);
  border: 1px solid rgba(220,38,38,0.3);
  color: #f87171;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.73rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}

.vqr-btn-danger-sm:hover {
  background: rgba(220,38,38,0.3);
}

/* Generate Button */
.vqr-btn-generate {
  width: 100%;
  margin-top: 22px;
  padding: 15px;
  background: linear-gradient(135deg, #FF6B2B, #ff8c55);
  border: none;
  border-radius: 12px;
  color: white;
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 25px rgba(255,107,43,0.3);
}

.vqr-btn-generate:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255,107,43,0.45);
}

.vqr-btn-generate:active {
  transform: translateY(0);
}

/* Preview Panel */
.vqr-preview-panel {
  background: linear-gradient(180deg, #13131f 0%, #0d0d17 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 24px 24px;
  gap: 16px;
}

.vqr-preview-header {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.vqr-qr-display {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  min-height: 280px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
}

.vqr-placeholder {
  text-align: center;
  color: rgba(0,0,0,0.25);
}

.vqr-placeholder-icon {
  font-size: 3.5rem;
  margin-bottom: 12px;
  opacity: 0.3;
}

.vqr-placeholder p {
  margin: 4px 0;
  font-size: 0.82rem;
  color: rgba(0,0,0,0.4);
}

.vqr-placeholder-sub {
  font-size: 0.7rem !important;
  color: rgba(0,0,0,0.25) !important;
}

#vqr-qr-container img,
#vqr-qr-container canvas {
  display: block !important;
}

/* Download Buttons */
.vqr-download-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.vqr-dl-btn {
  padding: 9px 16px;
  border-radius: 9px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.vqr-dl-png {
  background: rgba(99,102,241,0.2);
  color: #a5b4fc;
  border: 1px solid rgba(99,102,241,0.3);
}

.vqr-dl-png:hover { background: rgba(99,102,241,0.35); }

.vqr-dl-svg {
  background: rgba(34,197,94,0.15);
  color: #86efac;
  border: 1px solid rgba(34,197,94,0.25);
}

.vqr-dl-svg:hover { background: rgba(34,197,94,0.28); }

.vqr-dl-jpg {
  background: rgba(251,191,36,0.15);
  color: #fde68a;
  border: 1px solid rgba(251,191,36,0.25);
}

.vqr-dl-jpg:hover { background: rgba(251,191,36,0.28); }

.vqr-branding {
  margin-top: auto;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.5px;
}

.vqr-branding strong {
  color: #FF6B2B;
}

/* Responsive */
@media (max-width: 768px) {
  .vqr-body {
    grid-template-columns: 1fr;
  }
  .vqr-controls {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    max-height: none;
  }
  .vqr-customize-grid {
    grid-template-columns: 1fr;
  }
}

/* WhatsApp hint */
.vqr-wa-hint {
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.25);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.75rem;
  color: rgba(37,211,102,0.9);
  line-height: 1.5;
  margin-top: 4px;
}

/* Animations */
@keyframes vqr-pop {
  0% { transform: scale(0.85); opacity: 0; }
  70% { transform: scale(1.03); }
  100% { transform: scale(1); opacity: 1; }
}

.vqr-qr-display.generated {
  animation: vqr-pop 0.4s ease forwards;
}

/* ══ NEW FEATURES v2.0 ══ */

/* Feature 1: QR Title */
.vqr-qr-title-text {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.4px;
  margin-top: 10px;
  font-style: italic;
  max-width: 100%;
  padding: 0 8px;
  word-break: break-word;
}
.vqr-optional { color: rgba(255,255,255,0.25); font-size: 0.65rem; font-weight:400; }
.vqr-char-hint { font-size: 0.65rem; color: rgba(255,255,255,0.25); margin-top: 2px; }
.vqr-field { display: flex; flex-direction: column; gap: 5px; }

/* Feature 2: Document Upload */
.vqr-doc-info {
  display: flex; align-items: flex-start; gap: 10px;
  background: rgba(99,102,241,0.08);
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: 10px; padding: 12px 14px; margin-bottom: 12px;
  font-size: 0.78rem;
}
.vqr-doc-info > span { font-size: 1.4rem; flex-shrink: 0; }
.vqr-doc-info strong { display: block; color: #a5b4fc; margin-bottom: 3px; }
.vqr-doc-info p { margin: 0; color: rgba(255,255,255,0.4); font-size: 0.72rem; line-height: 1.5; }

.vqr-doc-dropzone {
  border: 2px dashed rgba(255,255,255,0.12);
  border-radius: 12px; padding: 22px 16px;
  text-align: center; cursor: pointer; transition: all 0.2s;
  background: rgba(255,255,255,0.02);
}
.vqr-doc-dropzone:hover, .vqr-doc-dropzone.drag-over {
  border-color: #a5b4fc; background: rgba(99,102,241,0.06);
}
.vqr-doc-drop-icon { font-size: 2rem; margin-bottom: 8px; }
.vqr-doc-dropzone p { margin: 4px 0; color: rgba(255,255,255,0.45); font-size: 0.82rem; }
.vqr-doc-dropzone button {
  background: transparent; border: 1px solid #a5b4fc; color: #a5b4fc;
  padding: 4px 14px; border-radius: 6px; font-family: 'DM Sans',sans-serif;
  font-size: 0.78rem; cursor: pointer; transition: all 0.2s; margin: 0 2px;
}
.vqr-doc-dropzone button:hover { background: rgba(99,102,241,0.2); }
.vqr-doc-hint { font-size: 0.65rem !important; color: rgba(255,255,255,0.2) !important; margin-top: 8px !important; }

.vqr-doc-preview-row {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.05); border-radius: 10px;
  padding: 12px 14px; margin-bottom: 8px;
}
.vqr-doc-preview-row > span { font-size: 1.6rem; flex-shrink: 0; }
.vqr-doc-preview-row > div { flex: 1; min-width: 0; }
.vqr-doc-preview-row p { margin: 0; font-size: 0.8rem; color: rgba(255,255,255,0.7); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vqr-doc-size { font-size: 0.68rem !important; color: rgba(255,255,255,0.35) !important; margin-top: 2px !important; }

.vqr-doc-status {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.75rem; color: rgba(255,255,255,0.5);
  padding: 6px 4px;
}
.vqr-doc-status-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.vqr-doc-status-dot.uploading {
  background: #fbbf24;
  animation: vqr-pulse 1s ease-in-out infinite;
}
.vqr-doc-status-dot.done    { background: #34d399; }
.vqr-doc-status-dot.error   { background: #f87171; }

@keyframes vqr-pulse {
  0%,100% { opacity:1; } 50% { opacity:0.3; }
}

/* Feature 3: WhatsApp Share button */
.vqr-dl-wa {
  background: rgba(37,211,102,0.15) !important;
  color: #86efac !important;
  border: 1px solid rgba(37,211,102,0.3) !important;
}
.vqr-dl-wa:hover { background: rgba(37,211,102,0.28) !important; }

/* Feature 3: Clickable hint */
.vqr-clickable-hint {
  font-size: 0.72rem;
  color: rgba(37,211,102,0.7);
  text-align: center;
  padding: 6px 14px;
  background: rgba(37,211,102,0.07);
  border-radius: 8px;
  border: 1px solid rgba(37,211,102,0.15);
}

/* WhatsApp hint */
.vqr-wa-hint {
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.25);
  border-radius: 8px; padding: 10px 12px;
  font-size: 0.75rem; color: rgba(37,211,102,0.9); line-height: 1.5; margin-top: 4px;
}

/* ══ v3.0 Download + WhatsApp ══ */
.vqr-download-btns {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  width: 100% !important;
}
.vqr-dl-row {
  display: flex;
  gap: 6px;
}
.vqr-dl-row .vqr-dl-btn { flex: 1; }

/* Prominent WhatsApp share button */
.vqr-share-wa-btn {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 13px 16px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.25s;
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
  gap: 2px;
}
.vqr-share-wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37,211,102,0.45);
}
.vqr-wa-btn-icon { font-size: 1.3rem; line-height: 1; }
.vqr-wa-btn-text {
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.3px;
}
.vqr-wa-btn-sub {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.7);
  text-align: center;
  line-height: 1.3;
}

/* Clickable hint */
.vqr-clickable-hint {
  font-size: 0.72rem;
  color: rgba(37,211,102,0.8);
  text-align: center;
  padding: 7px 14px;
  background: rgba(37,211,102,0.08);
  border-radius: 8px;
  border: 1px solid rgba(37,211,102,0.18);
  width: 100%;
  box-sizing: border-box;
}

/* QR title shown on screen (title is also baked into downloaded image) */
.vqr-qr-title-text {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  margin-top: 6px;
  padding: 0 8px;
  word-break: break-word;
}

/* ══ v5.0 Title Position + Share Button ══ */

/* Title position row */
.vqr-title-pos-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.vqr-pos-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
}
.vqr-pos-btn {
  padding: 6px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.45);
  font-size: 0.76rem;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  transition: all 0.2s;
}
.vqr-pos-btn:hover { border-color: #FF6B2B; color: #FF6B2B; }
.vqr-pos-btn.active {
  background: #FF6B2B;
  border-color: #FF6B2B;
  color: white;
  font-weight: 600;
}

/* Share QR Code button — clean, white text */
.vqr-share-qr-btn {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border: none;
  border-radius: 12px;
  color: #ffffff !important;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 6px 20px rgba(37,211,102,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.vqr-share-qr-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37,211,102,0.42);
}

/* Override old WA button styles */
.vqr-share-wa-btn { display: none !important; }


/* ══ v6.0 Clean 4 Buttons — FINAL ══ */

/* Hide ALL old extra elements */
.vqr-share-wa-btn,
.vqr-wa-btn-icon, .vqr-wa-btn-text, .vqr-wa-btn-sub,
.vqr-clickable-hint,
#vqr-title-display,
.vqr-qr-title-text { display: none !important; }

/* QR container — no overflow ghost text */
.vqr-qr-display {
  overflow: hidden !important;
  position: relative !important;
}
#vqr-qr-container {
  display: flex !important;
  justify-content: center !important;
  overflow: hidden !important;
  width: 100% !important;
}
#vqr-qr-container canvas {
  max-width: 100% !important;
  height: auto !important;
  display: block !important;
}

/* 4 clean action buttons */
.vqr-action-btns {
  display: flex !important;
  gap: 8px !important;
  width: 100% !important;
}

.vqr-action-btn {
  flex: 1 !important;
  padding: 12px 4px !important;
  border: none !important;
  border-radius: 10px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.3px !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
  color: #ffffff !important;
  text-align: center !important;
  line-height: 1.2 !important;
  min-width: 0 !important;
  background-clip: padding-box !important;
}

.vqr-btn-png   { background-color: #4f46e5 !important; }
.vqr-btn-png:hover { background-color: #4338ca !important; transform: translateY(-1px); }

.vqr-btn-jpg   { background-color: #b45309 !important; }
.vqr-btn-jpg:hover { background-color: #92400e !important; transform: translateY(-1px); }

.vqr-btn-svg   { background-color: #047857 !important; }
.vqr-btn-svg:hover { background-color: #065f46 !important; transform: translateY(-1px); }

.vqr-btn-share { background-color: #25d366 !important; }
.vqr-btn-share:hover { background-color: #128c7e !important; transform: translateY(-1px); }

/* ══ QR Behaviour Option ══ */
.vqr-behaviour-row {
  display: flex;
  gap: 10px;
  margin-bottom: 6px;
}
.vqr-behaviour-opt {
  flex: 1;
  cursor: pointer;
}
.vqr-behaviour-opt input[type="radio"] {
  display: none;
}
.vqr-beh-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  padding: 12px 8px;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  transition: all 0.2s;
  cursor: pointer;
}
.vqr-behaviour-opt input:checked + .vqr-beh-box {
  border-color: #FF6B2B;
  background: rgba(255,107,43,0.1);
}
.vqr-beh-box:hover {
  border-color: rgba(255,107,43,0.5);
}
.vqr-beh-icon  { font-size: 1.4rem; line-height: 1; }
.vqr-beh-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: #e4e4f0;
}
.vqr-beh-desc {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.4;
}
.vqr-clickable-hint {
  font-size: 0.72rem;
  color: #86efac;
  text-align: center;
  padding: 6px 10px;
  background: rgba(37,211,102,0.08);
  border-radius: 8px;
  border: 1px solid rgba(37,211,102,0.2);
  display: none;
}

/* ══ Google Drive Upload UI ══ */
.vqr-google-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid #dadce0;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #3c4043;
  cursor: pointer;
  transition: all 0.2s;
  justify-content: center;
  margin-top: 8px;
}
.vqr-google-btn:hover { background: #f8f9fa; box-shadow: 0 2px 8px rgba(0,0,0,0.15); }

.vqr-drive-note {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-top: 8px;
}

.vqr-drive-user-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 12px;
}
#vqr-drive-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.vqr-drive-user-row > div { flex: 1; min-width: 0; }
.vqr-drive-user-row p {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.vqr-drive-user-row p + p { font-size: 0.65rem; color: rgba(255,255,255,0.4); margin-top: 2px; }

/* Upload progress bar */
.vqr-upload-progress {
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 8px;
}
.vqr-upload-bar {
  height: 100%;
  background: linear-gradient(90deg, #4285f4, #34a853);
  border-radius: 4px;
  transition: width 0.3s ease;
  width: 0%;
}
