/* Start custom CSS for html, class: .elementor-element-e10b9fc */@media (max-width: 600px) {
  .opt-btn {
    font-size: 13px;
    padding: 8px 10px;
    width: 100%;       /* ✅ confirm full width */
    overflow: visible; /* ✅ override any inherited clip */
  }
}

.opt-btn {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 9px 12px;
  border: 1px solid var(--bd);
  border-radius: 8px;
  cursor: pointer;
  background: var(--bg);
  text-align: left;
  width: 100%;
  color: var(--tx2);
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  line-height: 1.5;
  transition: border-color .15s, background .15s;
  /* ✅ REMOVE overflow: hidden — it was clipping wrapped text */
  min-width: 0;
  box-sizing: border-box; /* ✅ ensure padding is inside width */
}

.opt-text {
  flex: 1;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
  white-space: normal;        /* ✅ explicitly allow wrapping */
  overflow: visible;          /* ✅ never clip text */
}/* End custom CSS */