.api-key-display {
  margin: 20px 0;
}

.api-key-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 5px;
  padding: 10px;
}

.api-key-input {
  flex: 1;
  padding: 8px 12px !important;
  border: 0px solid #ccc;
  border-radius: 4px;
  font-family: monospace;
  font-size: 14px;
  background-color: #fff;
  color: #000;
}

.api-key-actions {
  display: flex;
  gap: 8px;
}

.api-key-toggle,
.api-key-copy {
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  color: #242424;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}

.api-key-toggle:hover,
.api-key-copy:hover {
  background-color: #242424;
  color: #fff;
}

.api-key-toggle:active,
.api-key-copy:active {
  transform: scale(0.95);
}

.api-key-copy.copied {
  background-color: #24C789;
  color: #fff;
  border-color: #24C789;
}

.api-key-copy.copied i::before {
  content: "\f00c";
}

