#flamingo-goal {
  max-width: 600px;
  margin: 20px auto;
  text-align: center;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  border: 2px dashed #ff69b4;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.flamingo-title {
  margin-bottom: 10px;
}

.flamingo-count {
  font-weight: bold;
  margin-bottom: 10px;
}

.progress-bar {
  width: 100%;
  height: 20px;
  background: #eee;
  border-radius: 10px;
  overflow: hidden;
  margin: 10px 0;
}

.bar-fill {
  background-color: #ff69b4;
  height: 100%;
  width: 0%;
  transition: width 1s ease;
}

.flamingo-revenue {
  font-weight: bold;
  margin-bottom: 15px;
}

.flamingo-btn-wrap {
  margin-top: 10px;
}

.flamingo-btn {
  padding: 10px 20px;
  border: none;
  text-decoration: none;
  display: inline-block;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  font-weight: bold;
  cursor: pointer;

  /* These will be overridden by inline CSS from options with !important */
}

/* Ensure inline styles from wp_add_inline_style win */
.flamingo-btn {
  color: inherit !important;
  background-color: inherit !important;
}