/* QR Code Generator Specific Styles */
.qr-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 20px;
}

.option-group {
  display: flex;
  flex-direction: column;
}

.option-label {
  font-size: 14px;
  font-weight: 600;
  color: #0f0f0f;
  margin-bottom: 0.5rem;
}

.select-input,
.number-input {
  padding: 0.75rem 1rem;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  font-size: 14px;
  background: #ffffff;
  transition: all 0.2s ease;
  font-family: inherit;
}

.select-input:focus,
.number-input:focus {
  outline: none;
  border-color: #0f0f0f;
  box-shadow: 0 0 0 3px rgba(15, 15, 15, 0.1);
}

.qr-result {
  text-align: center;
  padding: 2rem;
  background: #fafafa;
  border-radius: 12px;
  border: 2px dashed #e5e5e5;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

.qr-result.has-qr {
  background: #ffffff;
  border: 2px solid #e5e5e5;
}

.qr-placeholder {
  color: #a3a3a3;
  font-size: 16px;
  line-height: 1.6;
}

.qr-code-container {
  margin-bottom: 1.5rem;
}

.qr-code-container canvas {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.download-options {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1rem;
}

.download-btn {
  background-color: #146ef5;
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.download-btn:hover {
  transform: translateY(-1px);
}

.qr-info {
  margin-top: 1rem;
  font-size: 14px;
  color: #525252;
  line-height: 1.4;
}

.qr-info p {
  margin-bottom: 0.25rem;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .qr-options {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .download-options {
    flex-direction: column;
    align-items: center;
  }

  .download-btn {
    width: 200px;
    justify-content: center;
  }
}
