.tool-container {
  max-width: 500px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: center;
}

.tool-container h1 {
  font-size: 24px;
  margin-bottom: 8px;
}

.tool-container p {
  color: #666;
  margin-bottom: 24px;
}

#qrInput {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 16px;
}

.options-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 20px;
}

.option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 12px;
  color: #666;
}

.option select {
  padding: 6px 8px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 13px;
  margin-top: 4px;
}

.option input[type="color"] {
  width: 40px;
  height: 30px;
  border: none;
  border-radius: 6px;
  margin-top: 4px;
  cursor: pointer;
}

.qr-result {
  display: flex;
  justify-content: center;
  min-height: 60px;
}

.action-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 16px;
}

.action-row button {
  padding: 10px 20px;
  background: #185fa5;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.action-row button:hover {
  background: #0c447c;
}

.status-msg {
  margin-top: 10px;
  font-size: 13px;
  color: #999;
  min-height: 18px;
}

@media (max-width: 500px) {
  .options-row {
    flex-direction: column;
    align-items: center;
  }
}