/* Target <em> tags within Formidable checkbox labels */
.frm_form_field .frm_primary_label em {
    font-style: italic;
    font-size: 1em; /* Base size, adjust as needed */
    color: #666;
}
/* Ensure it applies to the allergen field specifically (adjust selector if needed) */
#frm_field_46_container .frm_primary_label em {
    font-size: 1.3em; /* Slightly larger, test 1.2em or 16px if needed */
}
/* General form styling */
.frm_scale {
    margin: 5px 0;
}
.rx-blink {
  animation: rx-blink 1s steps(1, end) infinite;
}
@keyframes rx-blink {
  50% { opacity: 0; }
}
/* Custom Registration Form Styles */
.rx-register-error {
    background: #ffe6e6;
    border: 1px solid #cc0000;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 20px;
}
.rx-register-error ul {
    margin: 0;
    padding-left: 20px;
}
#rx-register-form {
    max-width: 400px;
    margin: 20px 0;
}
#rx-register-form p {
    margin-bottom: 20px;
}
#rx-register-form label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}
#rx-register-form input[type="text"],
#rx-register-form input[type="email"],
#rx-register-form input[type="password"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
#rx-register-form button {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
}
#rx-register-form button:hover {
    background: #005177;
}
.sym-generic-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
}
.sym-generic-popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  border-radius: 8px;
  max-width: 400px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.sym-generic-popup h3 {
  color: #d00;
  margin-bottom: 10px;
}
.sym-generic-popup ul {
  list-style-type: disc;
  padding-left: 20px;
}
.sym-generic-popup button {
  background: #007cba;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
}
.sym-generic-popup button:hover {
  background: #005a87;
}
.rxas-flagged-ingredient {
  background: #fdecea;
  border: 1px solid #dc3545;
  border-radius: 6px;
  padding: 6px 8px;
  font-weight: bold;
}
