/* VMST QR Generator Module CSS */

.vmst-qr-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
}

@media (max-width: 768px) {
  .vmst-qr-grid {
    grid-template-columns: 1fr;
  }
}

.vmst-tabs-nav {
  display: flex;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid var(--vmst-border);
  border-radius: var(--vmst-radius-sm);
  padding: 0.25rem;
}

.vmst-tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.75rem 1rem;
  color: var(--vmst-text-muted);
  cursor: pointer;
  font-weight: 600;
  border-radius: 6px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.vmst-tab-btn:hover {
  color: var(--vmst-text);
}

.vmst-tab-btn.active {
  background: var(--vmst-primary);
  color: #fff;
  box-shadow: 0 4px 10px rgba(79, 70, 229, 0.25);
}

#vmst-qr-canvas-holder canvas {
  display: block;
  max-width: 100%;
  height: auto !important;
}

#vmst-logo-dropzone {
  border-style: dashed;
}
