/* 🔧 Feedback Section Container */
.wv-feedback-section {
  margin-top: 120px;
  padding: 25px;
  max-width: 800px;
  background-color: transparent; /* or use rgba if you want background tint */
  text-align: left;
}

/* 🔧 Headline and Paragraph in Feedback Section */
.wv-feedback-section h3,
.wv-feedback-section p {
  color: #e9e9ea !important;
  text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.6);
  font-weight: 600;
}

/* 🟧 Feedback Button */
.wv-feedback-button {
  background-color: #79bce7;
  color: #e9e9ea;
  border: 2px solid #e9e9ea;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  text-align: center;
  transition: 0.2s ease-in-out;
}

/* 🟧 Hover State for Button */
.wv-feedback-button:hover {
  background-color: #F47C20;
  color: #e9e9ea;
}

/* 🔝 Force white text for top nav Feedback tab */
#portal_tabFeedback a,
#portal_tabFeedback a span {
  color: #e9e9ea !important;
}

