/* Base widget styling */
body {
  font-family: "Open Sans", sans-serif;
  background: transparent;
  padding: 0;
  margin: 0;
}

.rsc-widget {
  max-width: 600px;
  margin: 0 auto;
  padding: 16px 0;
  text-align: left; /* left justify everything */
}

/* Heading */
.rsc-heading {
  font-size: 22px;
  font-weight: 700;
  color: #000000; /* make heading white */
  margin: 0 0 6px 0;
}

/* Subtext paragraph */
.rsc-subtext {
  color: #ffffff;
  font-size: 15px;
  margin: 0 0 18px 0;
}

.rsc-label {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
  display: block;
  color: #fff; /* ensure readable on Rush backgrounds */
}

.rsc-select {
  width: 100%;
  padding: 10px;
  font-size: 15px;
  font-family: inherit;
  border-radius: 4px;
  border: 1px solid #ccc;
  margin-bottom: 16px;
}

/* Result box */
.rsc-result {
  border-top: 1px solid #e5e5e5;
  padding-top: 16px;
}

.rsc-result--hidden {
  display: none;
}

/* Congratulations message */
.rsc-congrats {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #ffffff !important;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.rsc-congrats.visible {
  opacity: 1;
}

/* Placeholder note */
.rsc-note {
  font-size: 13px;
  opacity: 0.8;
}

.rsc-region-btn {
  display: none;
  margin-top: 12px;
  padding: 10px 16px;
  background-color: #ffffff;
  color: #000000; /* black */
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.rsc-region-btn:hover {
  background-color: #f2f2f2;
  transform: translateY(-1px);
}

