.copy-code {
  background-color: #f1f1f1;
  border: 1px solid #ccc;
  cursor: pointer;
  font-weight: bold;
  border-radius: 4px;
  padding: 8px 12px;
  margin: 4px;
}
.copy-code:hover {
  background-color: #e6e6e6;
}


.code-list {
  margin-top: 15px;
}

.code-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8f8f8;
  padding: 10px 15px;
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.code-text {
  font-weight: bold;
  font-size: 16px;
  color: #333;
}

.copy-code {
  background: #ff4d4f;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.copy-code:hover {
  background: #d9363e;
}

.copy-code:disabled {
  background-color: #aaa;
  cursor: not-allowed;
}
