.rsvpify-wrap {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: Arial, sans-serif;
}
.rsvpify-logo {
  display: block;
  margin: 0 auto 12px;
  max-width: 150px;
}
.rsvpify-instructions {
  font-size: 13px;
  color: #333;
  margin-bottom: 12px;
  line-height: 1.5;
}
#rsvpify_url {
  width: 100%;
  padding: 8px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 10px;
}
.generate-button {
  width: 100%;
  padding: 10px;
  font-size: 15px;
  background: #45286a;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.generate-button:hover {
  background: #3a2059;
}
.rsvpify-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.rsvpify-item code {
  flex: 1;
  background: #f5f5f5;
  padding: 6px 8px;
  border-radius: 4px;
  font-family: monospace;
  margin-right: 6px;
}
.copy-button {
  background: #191236;
  color: #fff;
  border: none;
  padding: 6px 10px;
  border-radius: 3px;
  cursor: pointer;
  margin-right: 6px;
}
.copy-button:hover {
  background: #0f0c2e;
}
.delete-button {
  background: #45286a;
  border: none;
  padding: 6px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 6px;
}
.delete-button:hover {
  background: #3a2059;
}
.delete-button .dashicons-trash {
  color: #fff !important;
  font-size: 16px;
  line-height: 1;
}