.tool-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.tool-header {
  text-align: center;
  margin-bottom: 40px;
}

.tool-icon-large {
  font-size: 48px;
  color: #3498db;
  margin-bottom: 20px;
}

.tool-description {
  color: #666;
  font-size: 18px;
  margin-top: 10px;
}

.tool-body {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.options-container {
  margin-bottom: 30px;
}

.option-group {
  margin-bottom: 20px;
}

.option-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
  color: #333;
}

.option-group input[type="number"] {
  width: 100px;
  padding: 10px;
  font-size: 16px;
  border: 2px solid #ddd;
  border-radius: 4px;
  outline: none;
}

.checkbox-group {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.checkbox-group input[type="checkbox"] {
  margin-right: 10px;
}

.button-group {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}

.action-button {
  padding: 12px 24px;
  background-color: #3498db;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.action-button:hover {
  background-color: #2980b9;
}

.uuid-list {
  max-height: 400px;
  overflow-y: auto;
  border: 2px solid #ddd;
  border-radius: 8px;
  padding: 15px;
}

.uuid-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #eee;
}

.uuid-item:last-child {
  border-bottom: none;
}

.copy-button {
  padding: 5px 10px;
  background-color: #2ecc71;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s;
}

.copy-button:hover {
  background-color: #27ae60;
}

.back-to-category {
  display: inline-flex;
  align-items: center;
  margin-top: 40px;
  padding: 10px 20px;
  background-color: #f1f1f1;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.back-to-category:hover {
  background-color: #e1e1e1;
}

.back-to-category i {
  margin-right: 10px;
}

@media (max-width: 768px) {
  .button-group {
    flex-direction: column;
  }
}
