.wp-block-list {
  padding: 0;
  margin: 0;
  background-color: #ffffff;
}

.list-item-content {
  padding-right: 15px;
}

.styled-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 5px;
  margin: 10px 0;
  background-color: #ffffff;
  padding: 10px;
  font-weight: bold;
  border: 1px solid #ddd;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.styled-list-item:hover {
  background-color: #f9f9f9;
  color: #333;
}

.copy-btn {
  padding: 8px 12px;
  font-size: 14px;
  color: #fff;
  background-color: #0056b3;
  border: 1px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.copy-btn:hover {
  background-color: #003366;
}

.copy-btn:active {
  background-color: #00224d;
}

.copied {
  background-color: #413d3f !important;
}
