/* Add your custom styles here if needed */

.name-combiner-plugin {
  max-width: 100%;
  padding: 20px;
  background-color: #f7cad8; /* Updated background color */
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.name-combiner-heading {
  text-align: center;
  margin-bottom: 20px;
  color: #333333;
}

.input-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Center align the input fields */
  margin-bottom: 20px;
}

input[type="text"] {
  flex: 0 0 calc(50% - 5px);
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  width: 100%;
  padding: 10px;
  background-color: #007bff;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: 10px;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #0056b3;
}

#result {
  margin-top: 20px;
  font-weight: bold;
}

.copy-icon,
.fav-icon {
  margin-left: 6px;
  color: #bdbdbd;
  cursor: pointer;
  transition: color 0.3s ease;
}

.copy-icon:hover,
.fav-icon:hover {
  color: #0056b3;
}

.fav-icon.active {
  color: #fbc02d;
}
