/* Fantasy Football Helper — PPFD League Settings Tool */
/* Paste this whole file into: Appearance > Customize > Additional CSS */
/* All selectors are scoped to ffh- prefixed classes, so this will not affect any other page on your site */

.ffh-ppfd-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background-color: #FFFFFF;
  color: #1A1A1A;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

.ffh-ppfd-page h1 {
  color: #1A1A1A;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.ffh-ppfd-page h2 {
  color: #1A1A1A;
  font-size: 24px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 16px;
  border-bottom: 3px solid #C1692B;
  padding-bottom: 8px;
}

.ffh-ppfd-page h3 {
  color: #1A1A1A;
  font-size: 19px;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 10px;
}

.ffh-ppfd-page p {
  font-size: 16px;
  margin-bottom: 16px;
}

.ffh-intro {
  font-size: 18px;
  color: #1A1A1A;
  margin-bottom: 24px;
}

.ffh-ppfd-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 15px;
}

.ffh-ppfd-table thead {
  display: table-header-group !important;
}

.ffh-ppfd-table thead tr {
  display: table-row !important;
}

.ffh-ppfd-table th {
  display: table-cell !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: static !important;
  height: auto !important;
  width: auto !important;
  overflow: visible !important;
  clip: auto !important;
  background-color: #1A1A1A !important;
  color: #FFFFFF !important;
  text-align: left;
  padding: 12px 14px;
  font-weight: 700;
}

.ffh-ppfd-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #E0E0E0;
}

.ffh-ppfd-table tr:nth-child(even) {
  background-color: #F7F5F2;
}

.ffh-impact-high {
  color: #C1692B;
  font-weight: 700;
}

.ffh-impact-medium {
  color: #1A1A1A;
  font-weight: 700;
}

.ffh-impact-low {
  color: #6B6B6B;
  font-weight: 700;
}

.ffh-tool-section {
  background-color: #F7F5F2;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 28px;
  margin: 32px 0;
  text-align: center;
}

.ffh-tool-section h2 {
  border-bottom: none;
  margin-top: 0;
}

.ffh-feature-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
  display: inline-block;
}

.ffh-feature-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 16px;
}

.ffh-feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #C1692B;
  font-weight: 700;
}

.ffh-cta-button {
  display: inline-block;
  background-color: #C1692B;
  color: #FFFFFF !important;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 17px;
  margin-top: 16px;
}

.ffh-cta-button:hover {
  background-color: #A5561F;
}

.ffh-embed-placeholder {
  background-color: #FFFFFF;
  border: 2px dashed #C1692B;
  border-radius: 8px;
  padding: 40px 20px;
  margin: 20px 0;
  color: #6B6B6B;
  font-style: italic;
}

.ffh-steps {
  counter-reset: ffh-step;
  padding: 0;
  list-style: none;
}

.ffh-steps li {
  counter-increment: ffh-step;
  position: relative;
  padding-left: 44px;
  margin-bottom: 20px;
}

.ffh-steps li:before {
  content: counter(ffh-step);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #1A1A1A;
  color: #FFFFFF;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.ffh-faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #E0E0E0;
  padding-bottom: 20px;
}

.ffh-faq-item h3 {
  margin-top: 0;
}

.ffh-internal-link {
  color: #C1692B;
  font-weight: 700;
  text-decoration: underline;
}

.ffh-form-section {
  background-color: #1A1A1A;
  color: #FFFFFF;
  border-radius: 8px;
  padding: 32px;
  margin-top: 40px;
  text-align: center;
}

.ffh-form-section h2 {
  color: #FFFFFF;
  border-bottom: none;
  margin-top: 0;
}

.ffh-form-section p {
  color: #E0E0E0;
}

.ffh-form-input {
  padding: 12px 16px;
  border-radius: 6px;
  border: none;
  font-size: 16px;
  width: 280px;
  max-width: 100%;
  margin-right: 8px;
  margin-bottom: 12px;
}

.ffh-form-button {
  padding: 12px 24px;
  border-radius: 6px;
  border: none;
  background-color: #C1692B;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
}