body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans", sans-serif !important;
  overflow: hidden;
}

header {
  height: 52px;
  background-color: #141414;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 0 10px;
  padding-left: 26px;
}

table {
  table-layout: fixed;
  width: 100%;
}

table,
th,
td {
  border: 1px solid #141414 !important;
  border-collapse: collapse;
  align-content: baseline;
  text-align: left;
}

td {
  padding: 8px 10px;
}

th {
  padding: 8px 10px;
  min-height: 36px;
}

.logo {
  width: 188px;
  height: 24px;
}

.header-title-container {
  flex: 1;
  text-align: center;
  display: flex;
  align-items: center;
}

.header-title {
  font-size: 18px;
  margin: 0;
  text-decoration: none;
  color: #fff;
}

.separator {
  height: 15px;
  width: 1px;
  background-color: #8d8f90;
  margin: 0 20px;
}

.beta-text {
  font-size: 12px;
  font-style: italic;
  font-weight: 900;
  padding: 4px 19px;
  border-left: 1px solid #474849;
  margin-left: auto;
}

main {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.scroll-area {
  max-height: calc(100vh - 240px);
  overflow-y: auto;
  background-color: #f6f6f6;
  padding: 20px 30px 20px 20px;
  color: #141414;
  max-width: 1200px;
  margin: 0 auto 24px auto;
  font-size: 14px;
  line-height: 160%;
}

#tos-container.scroll-area {
  max-height: calc(100vh - 320px);
}

/* ── Page title: shared by privacy-policy and terms-of-service ── */
.privacy-text {
  font-size: 28px;
  font-weight: 700;
  color: #141414;
  text-align: center;
  line-height: 100%;
  letter-spacing: 0;
  margin-top: 30px;
  margin-bottom: 30px;
  padding-bottom: 0;
  border-bottom: none;
}

/* ── Tab bar ── */
.tab-bar {
  display: flex;
  align-items: flex-end;
  gap: 0;
  margin-top: 12px;
  margin-bottom: 24px;
}

.tab-item {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.77);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  height: 48px;
  min-width: 80px;
  padding: 0 10px;
  cursor: pointer;
  letter-spacing: 0;
  line-height: 48px;
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s;
}

.tab-item.active {
  color: #000000;
  border-bottom: 2px solid #F37321;
  font-weight: 600;
}

.tab-item:hover:not(.active) {
  color: #141414;
}

/* ── Controls row: version dropdown left, expand/collapse icon right ── */
.controls-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 8px 0 16px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #141414;
}

/* ── Version dropdown: Figma spec 200px, 32px, Noto Sans 16px Regular ── */
/* ── Version select wrapper ── */
.version-select-wrapper {
  width: 200px;
}

/* ── Trigger button: Figma Default state ── */
.version-select-btn {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000000 !important;
  width: 200px;
  height: 32px;
  border-radius: 4px !important;
  border: 1px solid rgba(0, 0, 0, 0.21) !important;
  padding: 0 8px !important;
  background-color: rgba(0, 0, 0, 0) !important;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  box-shadow: none !important;
  transition: background-color 0.15s, border-color 0.15s;
}

/* ── Trigger: Hover state ── */
.version-select-btn:hover {
  background-color: rgba(0, 0, 0, 0.04) !important;
  border-color: rgba(0, 0, 0, 0.29) !important;
  color: rgba(0, 0, 0, 0.49)!important;
}

/* ── Trigger: Press / Open state ── */
.version-select-btn:active,
.version-select-btn:focus,
.version-select-btn.show {
  background-color: rgba(0, 0, 0, 0) !important;
  border-color: rgba(0, 0, 0, 0.38) !important;
  color: #000000 !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Bootstrap chevron color */
.version-select-btn.dropdown-toggle::after {
  display: none !important;
}

.version-select-btn .chevron-icon {
  flex-shrink: 0;
  margin-left: auto;
  transition: transform 0.2s ease;
}

.version-select-btn.show .chevron-icon {
  transform: rotate(180deg); /* flip up when open */
}

.version-select-label {
  flex: 1;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ── Dropdown panel: Figma spec ── */
.version-select-wrapper .dropdown-menu {
  min-width: 200px;
  width: 200px;
  max-height: 240px;
  overflow-y: auto;
  background-color: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 4px !important;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.4) !important;
  padding: 4px 0 !important;
}

/* ── Option rows: Figma spec ── */
.version-select-wrapper .dropdown-item {
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000000 !important;
  height: 32px;
  display: flex !important;
  align-items: center;
  padding: 0 12px !important;
  background-color: transparent !important;
  transition: background-color 0.1s;
}

/* ── Option row: Hover ── */
.version-select-wrapper .dropdown-item:hover,
.version-select-wrapper .dropdown-item:focus {
  background-color: rgba(0, 0, 0, 0.04) !important;
  color: #000000 !important;
}

/* ── Option row: Press ── */
.version-select-wrapper .dropdown-item:active {
  background-color: rgba(0, 0, 0, 0.08) !important;
  color: #000000 !important;
}

/* ── Selected item ── */
.version-select-wrapper .dropdown-item.selected {
  background-color: rgba(0, 0, 0, 0.04) !important;
  font-weight: 500;
}

/* ── Expand/Collapse toggle icon button ── */
.expand-collapse-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 6px;
  color: #555;
  display: flex;
  align-items: center;
  border-radius: 4px;
  transition: background 0.15s;
}

.expand-collapse-icon-btn:hover {
  background: rgba(0, 0, 0, 0.04);
  color: rgba(0, 0, 0, 1);
}

.expand-collapse-icon-btn.dropdown-toggle::after {
  display: none;
}

#expandCollapseToggle .dropdown-menu {
  min-width: 140px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.12) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
  padding: 4px 0;
}

#expandCollapseToggle .dropdown-item {
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000000c4;
  padding: 8px 16px !important;
  height: auto !important;
  display: block !important;
}

#expandCollapseToggle .dropdown-item:hover {
  background: #f5f5f5 !important;
}

/* ── Accordion inside scroll-area: shared by both pages ── */
/* Remove background and border from accordion */
.custom-accordion .accordion-item {
  background-color: transparent;
  border: none;
  color: #141414 !important;
}

/* Remove button background, border, and shadow */
/* Remove padding from header button */
.custom-accordion .accordion-button {
  background-color: transparent;
  border: none;
  box-shadow: none !important;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 0;
}

/* Remove focus outline */
.custom-accordion .accordion-button:focus {
  box-shadow: none;
  outline: none;
}

/* Remove expanded state background */
.custom-accordion .accordion-button:not(.collapsed) {
  background-color: transparent;
  color: inherit;


}

.custom-accordion .accordion-button::after {
  background-image: url("./images/arrow_chevron_up.svg");
  /* or .png */
  transform: rotate(-180deg);
  background-repeat: no-repeat;
}

/* Rotate on expand */
.custom-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(0deg);
  background-image: url("./images/arrow_chevron_up.svg") !important;
}

/* Remove padding from accordion content */
.custom-accordion .accordion-body {
  padding: 0;
}

.margin-bottom-10 {
  margin-bottom: 10px;
}

.custom-numberings {
  counter-reset: section 0;
  list-style: none;
  padding-left: 0;
}

.custom-numberings>li {
  counter-increment: section;
  margin-bottom: 10px;
}

.custom-numberings>li::before {
  content: "5." counter(section) " ";
  margin-right: 5px;
}
.list-style-none{
  list-style: none;
}
.custom-numbering-one {
  counter-reset: section 0;
  list-style: none;
  padding-left: 0;
}

.custom-numbering-one>li {
  counter-increment: section;
  margin-bottom: 10px;
}

.custom-numbering-one>li::before {
  content: "1." counter(section) " ";
  font-style: italic;
  margin-right: 5px;
}
.custom-numbering-two {
  counter-reset: section 0;
  list-style: none;
  padding-left: 0;
}

.custom-numbering-two>li {
  counter-increment: section;
  margin-bottom: 10px;
}

.custom-numbering-two>li::before {
  content: "2." counter(section) " ";
  font-style: italic;
  margin-right: 5px;
}
a.__cf_email__ {
  color: red;
  text-decoration: none;
}