@import url(https://fonts.googleapis.com/css2?family=Caveat:wght@400;600&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Cormorant+Garamond:wght@300;400;600&display=swap);
/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

/* Common */

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

:root {
  --ifm-color-scheme: light;

  /* Colors. */
  --ifm-dark-value: 10%;
  --ifm-darker-value: 15%;
  --ifm-darkest-value: 30%;
  --ifm-light-value: 15%;
  --ifm-lighter-value: 30%;
  --ifm-lightest-value: 50%;

  /*
  This seems like a lot, but we want to ensure enough contrast.
  Goal is to have a min score of 3 on https://www.myndex.com/APCA/fullmatrix
  For fontWeight 400 + score 3, the cell must show a value < 16px (fontsize we use in places like alerts)
  See also https://github.com/facebookincubator/infima/issues/55#issuecomment-884023075
   */
  --ifm-contrast-background-value: 90%;
  --ifm-contrast-foreground-value: 70%;
  /* Using slightly different values for dark mode */
  --ifm-contrast-background-dark-value: 70%;
  --ifm-contrast-foreground-dark-value: 90%;

  --ifm-color-primary: #3578e5;
  --ifm-color-secondary: #ebedf0;
  --ifm-color-success: #00a400;
  --ifm-color-info: #54c7ec;
  --ifm-color-warning: #ffba00;
  --ifm-color-danger: #fa383e;
    --ifm-color-primary-dark: rgb(48, 108, 206);
    --ifm-color-primary-darker: rgb(45, 102, 195);
    --ifm-color-primary-darkest: rgb(37, 84, 160);
    --ifm-color-primary-light: rgb(83, 140, 233);
    --ifm-color-primary-lighter: rgb(114, 161, 237);
    --ifm-color-primary-lightest: rgb(154, 188, 242);
    --ifm-color-primary-contrast-background: rgb(235, 242, 252);
    --ifm-color-primary-contrast-foreground: rgb(16, 36, 69);
    --ifm-color-secondary-dark: rgb(212, 213, 216);
    --ifm-color-secondary-darker: rgb(200, 201, 204);
    --ifm-color-secondary-darkest: rgb(164, 166, 168);
    --ifm-color-secondary-light: rgb(238, 240, 242);
    --ifm-color-secondary-lighter: rgb(241, 242, 245);
    --ifm-color-secondary-lightest: rgb(245, 246, 248);
    --ifm-color-secondary-contrast-background: rgb(253, 253, 254);
    --ifm-color-secondary-contrast-foreground: rgb(71, 71, 72);
    --ifm-color-success-dark: rgb(0, 148, 0);
    --ifm-color-success-darker: rgb(0, 139, 0);
    --ifm-color-success-darkest: rgb(0, 115, 0);
    --ifm-color-success-light: rgb(38, 178, 38);
    --ifm-color-success-lighter: rgb(77, 191, 77);
    --ifm-color-success-lightest: rgb(128, 210, 128);
    --ifm-color-success-contrast-background: rgb(230, 246, 230);
    --ifm-color-success-contrast-foreground: rgb(0, 49, 0);
    --ifm-color-info-dark: rgb(76, 179, 212);
    --ifm-color-info-darker: rgb(71, 169, 201);
    --ifm-color-info-darkest: rgb(59, 139, 165);
    --ifm-color-info-light: rgb(110, 207, 239);
    --ifm-color-info-lighter: rgb(135, 216, 242);
    --ifm-color-info-lightest: rgb(170, 227, 246);
    --ifm-color-info-contrast-background: rgb(238, 249, 253);
    --ifm-color-info-contrast-foreground: rgb(25, 60, 71);
    --ifm-color-warning-dark: rgb(230, 167, 0);
    --ifm-color-warning-darker: rgb(217, 158, 0);
    --ifm-color-warning-darkest: rgb(179, 130, 0);
    --ifm-color-warning-light: rgb(255, 196, 38);
    --ifm-color-warning-lighter: rgb(255, 207, 77);
    --ifm-color-warning-lightest: rgb(255, 221, 128);
    --ifm-color-warning-contrast-background: rgb(255, 248, 230);
    --ifm-color-warning-contrast-foreground: rgb(77, 56, 0);
    --ifm-color-danger-dark: rgb(225, 50, 56);
    --ifm-color-danger-darker: rgb(213, 48, 53);
    --ifm-color-danger-darkest: rgb(175, 39, 43);
    --ifm-color-danger-light: rgb(251, 86, 91);
    --ifm-color-danger-lighter: rgb(251, 116, 120);
    --ifm-color-danger-lightest: rgb(253, 156, 159);
    --ifm-color-danger-contrast-background: rgb(255, 235, 236);
    --ifm-color-danger-contrast-foreground: rgb(75, 17, 19);

  --ifm-color-white: #fff;
  --ifm-color-black: #000;

  --ifm-color-gray-0: var(--ifm-color-white);
  --ifm-color-gray-100: #f5f6f7;
  --ifm-color-gray-200: #ebedf0;
  --ifm-color-gray-300: #dadde1;
  --ifm-color-gray-400: #ccd0d5;
  --ifm-color-gray-500: #bec3c9;
  --ifm-color-gray-600: #8d949e;
  --ifm-color-gray-700: #606770;
  --ifm-color-gray-800: #444950;
  --ifm-color-gray-900: #1c1e21;
  --ifm-color-gray-1000: var(--ifm-color-black);

  --ifm-color-emphasis-0: var(--ifm-color-gray-0);
  --ifm-color-emphasis-100: var(--ifm-color-gray-100);
  --ifm-color-emphasis-200: var(--ifm-color-gray-200);
  --ifm-color-emphasis-300: var(--ifm-color-gray-300);
  --ifm-color-emphasis-400: var(--ifm-color-gray-400);
  --ifm-color-emphasis-500: var(--ifm-color-gray-500);
  --ifm-color-emphasis-600: var(--ifm-color-gray-600);
  --ifm-color-emphasis-700: var(--ifm-color-gray-700);
  --ifm-color-emphasis-800: var(--ifm-color-gray-800);
  --ifm-color-emphasis-900: var(--ifm-color-gray-900);
  --ifm-color-emphasis-1000: var(--ifm-color-gray-1000);

  /* Base. */
  --ifm-color-content: var(--ifm-color-emphasis-900);
  --ifm-color-content-inverse: var(--ifm-color-emphasis-0);
  --ifm-color-content-secondary: #525860;

  --ifm-background-color: transparent; /* Body's background. */
  --ifm-background-surface-color: var(--ifm-color-content-inverse);
  --ifm-global-border-width: 1px;
  --ifm-global-radius: 0.4rem;

  --ifm-hover-overlay: rgba(0, 0, 0, 0.05);

  /* Typography. */
  --ifm-font-color-base: var(--ifm-color-content);
  --ifm-font-color-base-inverse: var(--ifm-color-content-inverse);
  --ifm-font-color-secondary: var(--ifm-color-content-secondary);
  --ifm-font-family-base: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, BlinkMacSystemFont,
    'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji',
    'Segoe UI Emoji', 'Segoe UI Symbol';
  --ifm-font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
    'Liberation Mono', 'Courier New', monospace;
  --ifm-font-size-base: 100%;

  --ifm-font-weight-light: 300;
  --ifm-font-weight-normal: 400;
  --ifm-font-weight-semibold: 500;
  --ifm-font-weight-bold: 700;

  --ifm-font-weight-base: var(--ifm-font-weight-normal);
  --ifm-line-height-base: 1.65;

  /* Spacing. */
  --ifm-global-spacing: 1rem;
  --ifm-spacing-vertical: var(--ifm-global-spacing);
  --ifm-spacing-horizontal: var(--ifm-global-spacing);

  /* Transitions. */
  --ifm-transition-fast: 200ms;
  --ifm-transition-slow: 400ms;
  --ifm-transition-timing-default: cubic-bezier(0.08, 0.52, 0.52, 1);

  /* Shadows. */
  --ifm-global-shadow-lw: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  --ifm-global-shadow-md: 0 5px 40px rgba(0, 0, 0, 0.2);
  --ifm-global-shadow-tl: 0 12px 28px 0 rgba(0, 0, 0, 0.2),
    0 2px 4px 0 rgba(0, 0, 0, 0.1);

  /* Z-index. */
  --ifm-z-index-dropdown: 100;
  --ifm-z-index-fixed: 200;
  --ifm-z-index-overlay: 400;
  --ifm-container-width: 1140px;
  --ifm-container-width-xl: 1320px;
  --ifm-code-background: rgb(246, 247, 248);
  --ifm-code-border-radius: var(--ifm-global-radius);
  --ifm-code-font-size: 90%;
  --ifm-code-padding-horizontal: 0.1rem;
  --ifm-code-padding-vertical: 0.1rem;

  --ifm-pre-background: var(--ifm-code-background);
  --ifm-pre-border-radius: var(--ifm-code-border-radius);
  --ifm-pre-color: inherit;
  --ifm-pre-line-height: 1.45;
  --ifm-pre-padding: 1rem;
  --ifm-heading-color: inherit;
  --ifm-heading-margin-top: 0;
  --ifm-heading-margin-bottom: var(--ifm-spacing-vertical);
  --ifm-heading-font-family: var(--ifm-font-family-base);
  --ifm-heading-font-weight: var(--ifm-font-weight-bold);
  --ifm-heading-line-height: 1.25;

  --ifm-h1-font-size: 2rem;
  --ifm-h2-font-size: 1.5rem;
  --ifm-h3-font-size: 1.25rem;
  --ifm-h4-font-size: 1rem;
  --ifm-h5-font-size: 0.875rem;
  --ifm-h6-font-size: 0.85rem;
  --ifm-image-alignment-padding: 1.25rem;
  /* Leading is the distance between two baselines */
  /* TODO: add appropriate mobile leading */
  --ifm-leading-desktop: 1.25;
  --ifm-leading: calc(var(--ifm-leading-desktop) * 1rem);
  --ifm-list-left-padding: 2rem;
  --ifm-list-margin: 1rem;
  --ifm-list-item-margin: 0.25rem;
  --ifm-list-paragraph-margin: 1rem;
  --ifm-table-cell-padding: 0.75rem;

  --ifm-table-background: transparent;
  --ifm-table-stripe-background: rgba(0, 0, 0, 0.03);

  --ifm-table-border-width: 1px;
  --ifm-table-border-color: var(--ifm-color-emphasis-300);

  --ifm-table-head-background: inherit;
  --ifm-table-head-color: inherit;
  --ifm-table-head-font-weight: var(--ifm-font-weight-bold);

  --ifm-table-cell-color: inherit;
  /* Links. */
  --ifm-link-color: var(--ifm-color-primary);
  --ifm-link-decoration: none;
  --ifm-link-hover-color: var(--ifm-link-color);
  --ifm-link-hover-decoration: underline;

  /* Paragraphs. */
  --ifm-paragraph-margin-bottom: var(--ifm-leading);

  /* Blockquotes. */
  --ifm-blockquote-font-size: var(--ifm-font-size-base);
  --ifm-blockquote-border-left-width: 2px;
  --ifm-blockquote-padding-horizontal: var(--ifm-spacing-horizontal);
  --ifm-blockquote-padding-vertical: 0;
  --ifm-blockquote-shadow: none;
  --ifm-blockquote-color: var(--ifm-color-emphasis-800);
  --ifm-blockquote-border-color: var(--ifm-color-emphasis-300);

  /* Horizontal Rules. */
  --ifm-hr-background-color: var(--ifm-color-emphasis-500);
  --ifm-hr-height: 1px;
  --ifm-hr-margin-vertical: 1.5rem;
  --ifm-scrollbar-size: 7px;
  --ifm-scrollbar-track-background-color: #f1f1f1;
  --ifm-scrollbar-thumb-background-color: #c0c0c0;
  --ifm-scrollbar-thumb-hover-background-color: #a7a7a7;
  --ifm-alert-background-color: inherit; /* Set a default which will be overridden later. */
  --ifm-alert-border-color: inherit; /* Set a default which will be overridden later. */
  --ifm-alert-border-radius: var(--ifm-global-radius);
  --ifm-alert-border-width: 0px; /* For users that want to easily add a border */
  --ifm-alert-border-left-width: 5px;
  --ifm-alert-color: var(--ifm-font-color-base);
  --ifm-alert-padding-horizontal: var(--ifm-spacing-horizontal);
  --ifm-alert-padding-vertical: var(--ifm-spacing-vertical);
  --ifm-alert-shadow: var(--ifm-global-shadow-lw);
  --ifm-avatar-intro-margin: 1rem;
  --ifm-avatar-intro-alignment: inherit;
  --ifm-avatar-photo-size: 3rem;
  --ifm-badge-background-color: inherit; /* Set a default which will be overridden later. */
  --ifm-badge-border-color: inherit; /* Set a default which will be overridden later. */
  --ifm-badge-border-radius: var(--ifm-global-radius);
  --ifm-badge-border-width: var(--ifm-global-border-width);
  --ifm-badge-color: var(--ifm-color-white);
  --ifm-badge-padding-horizontal: calc(var(--ifm-spacing-horizontal) * 0.5);
  --ifm-badge-padding-vertical: calc(var(--ifm-spacing-vertical) * 0.25);
  --ifm-breadcrumb-border-radius: 1.5rem;
  --ifm-breadcrumb-spacing: 0.5rem;
  --ifm-breadcrumb-color-active: var(--ifm-color-primary);
  --ifm-breadcrumb-item-background-active: var(--ifm-hover-overlay);
  --ifm-breadcrumb-padding-horizontal: 0.8rem;
  --ifm-breadcrumb-padding-vertical: 0.4rem;
  --ifm-breadcrumb-size-multiplier: 1;
  --ifm-breadcrumb-separator: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" viewBox="0 0 256 256"><g><g><polygon points="79.093,0 48.907,30.187 146.72,128 48.907,225.813 79.093,256 207.093,128"/></g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>');
  --ifm-breadcrumb-separator-filter: none;
  --ifm-breadcrumb-separator-size: 0.5rem;
  --ifm-breadcrumb-separator-size-multiplier: 1.25;
  --ifm-button-background-color: inherit;
  --ifm-button-border-color: var(--ifm-button-background-color);
  --ifm-button-border-width: var(--ifm-global-border-width);
  --ifm-button-color: var(--ifm-font-color-base-inverse);
  --ifm-button-font-weight: var(--ifm-font-weight-bold);
  --ifm-button-padding-horizontal: 1.5rem;
  --ifm-button-padding-vertical: 0.375rem;
  --ifm-button-size-multiplier: 1;
  --ifm-button-transition-duration: var(--ifm-transition-fast);
  --ifm-button-border-radius: calc(
    var(--ifm-global-radius) * var(--ifm-button-size-multiplier)
  );
  --ifm-button-group-spacing: 2px;
  --ifm-card-background-color: var(--ifm-background-surface-color);
  --ifm-card-border-radius: calc(var(--ifm-global-radius) * 2);
  --ifm-card-horizontal-spacing: var(--ifm-global-spacing);
  --ifm-card-vertical-spacing: var(--ifm-global-spacing);
  --ifm-toc-border-color: var(--ifm-color-emphasis-300);
  --ifm-toc-link-color: var(--ifm-color-content-secondary);
  --ifm-toc-padding-vertical: 0.5rem;
  --ifm-toc-padding-horizontal: 0.5rem;
  --ifm-dropdown-background-color: var(--ifm-background-surface-color);
  --ifm-dropdown-font-weight: var(--ifm-font-weight-semibold);
  --ifm-dropdown-link-color: var(--ifm-font-color-base);
  --ifm-dropdown-hover-background-color: var(--ifm-hover-overlay);
  --ifm-footer-background-color: var(--ifm-color-emphasis-100);
  --ifm-footer-color: inherit;
  --ifm-footer-link-color: var(--ifm-color-emphasis-700);
  --ifm-footer-link-hover-color: var(--ifm-color-primary);
  --ifm-footer-link-horizontal-spacing: 0.5rem;
  --ifm-footer-padding-horizontal: calc(var(--ifm-spacing-horizontal) * 2);
  --ifm-footer-padding-vertical: calc(var(--ifm-spacing-vertical) * 2);
  --ifm-footer-title-color: inherit;
  --ifm-footer-logo-max-width: min(30rem, 90vw);
  --ifm-hero-background-color: var(--ifm-background-surface-color);
  --ifm-hero-text-color: var(--ifm-color-emphasis-800);
  --ifm-menu-color: var(--ifm-color-emphasis-700);
  --ifm-menu-color-active: var(--ifm-color-primary);
  --ifm-menu-color-background-active: var(--ifm-hover-overlay);
  --ifm-menu-color-background-hover: var(--ifm-hover-overlay);
  --ifm-menu-link-padding-horizontal: 0.75rem;
  --ifm-menu-link-padding-vertical: 0.375rem;
  --ifm-menu-link-sublist-icon: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16px" height="16px" viewBox="0 0 24 24"><path fill="rgba(0,0,0,0.5)" d="M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6z"></path></svg>');
  --ifm-menu-link-sublist-icon-filter: none;
  --ifm-navbar-background-color: var(--ifm-background-surface-color);
  --ifm-navbar-height: 3.75rem;
  --ifm-navbar-item-padding-horizontal: 0.75rem;
  --ifm-navbar-item-padding-vertical: 0.25rem;
  --ifm-navbar-link-color: var(--ifm-font-color-base);
  --ifm-navbar-link-hover-color: var(--ifm-color-primary);
  --ifm-navbar-link-active-color: var(--ifm-link-color);
  --ifm-navbar-padding-horizontal: var(--ifm-spacing-horizontal);
  --ifm-navbar-padding-vertical: calc(var(--ifm-spacing-vertical) * 0.5);
  --ifm-navbar-shadow: var(--ifm-global-shadow-lw);
  --ifm-navbar-search-input-background-color: var(--ifm-color-emphasis-200);
  --ifm-navbar-search-input-color: var(--ifm-color-emphasis-800);
  --ifm-navbar-search-input-placeholder-color: var(--ifm-color-emphasis-500);
  --ifm-navbar-search-input-icon: url('data:image/svg+xml;utf8,<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" height="16px" width="16px"><path d="M6.02945,10.20327a4.17382,4.17382,0,1,1,4.17382-4.17382A4.15609,4.15609,0,0,1,6.02945,10.20327Zm9.69195,4.2199L10.8989,9.59979A5.88021,5.88021,0,0,0,12.058,6.02856,6.00467,6.00467,0,1,0,9.59979,10.8989l4.82338,4.82338a.89729.89729,0,0,0,1.29912,0,.89749.89749,0,0,0-.00087-1.29909Z" /></svg>');
  --ifm-navbar-sidebar-width: 83vw;
  --ifm-pagination-border-radius: var(--ifm-global-radius);
  --ifm-pagination-color-active: var(--ifm-color-primary);
  --ifm-pagination-font-size: 1rem;
  --ifm-pagination-item-active-background: var(--ifm-hover-overlay);
  --ifm-pagination-page-spacing: 0.2em;
  --ifm-pagination-padding-horizontal: calc(var(--ifm-spacing-horizontal) * 1);
  --ifm-pagination-padding-vertical: calc(var(--ifm-spacing-vertical) * 0.25);
  --ifm-pagination-nav-border-radius: var(--ifm-global-radius);
  --ifm-pagination-nav-color-hover: var(--ifm-color-primary);
  --ifm-pills-color-active: var(--ifm-color-primary);
  --ifm-pills-color-background-active: var(--ifm-hover-overlay);
  --ifm-pills-spacing: 0.125rem;
  --ifm-tabs-color: var(--ifm-font-color-secondary);
  --ifm-tabs-color-active: var(--ifm-color-primary);
  --ifm-tabs-color-active-border: var(--ifm-tabs-color-active);
  --ifm-tabs-padding-horizontal: 1rem;
  --ifm-tabs-padding-vertical: 1rem;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

* {
  box-sizing: border-box;
}

html {
  background-color: var(--ifm-background-color);
  color: var(--ifm-font-color-base);
  color-scheme: var(--ifm-color-scheme);
  font: var(--ifm-font-size-base) / var(--ifm-line-height-base)
    var(--ifm-font-family-base);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  text-rendering: optimizelegibility;
  -webkit-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

body {
  margin: 0;
  word-wrap: break-word;
}

iframe {
  border: 0;
  color-scheme: auto;
}

/* Layout */

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.container {
  margin: 0 auto;
  max-width: var(--ifm-container-width);
  padding: 0 var(--ifm-spacing-horizontal);
  width: 100%;
}

.container--fluid {
    max-width: inherit;
  }

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 calc(var(--ifm-spacing-horizontal) * -1);
}

.row--no-gutters {
    margin-left: 0;
    margin-right: 0;
  }

.row--no-gutters > .col {
      padding-left: 0;
      padding-right: 0;
    }

.row--align-top {
    align-items: flex-start;
  }

.row--align-bottom {
    align-items: flex-end;
  }

.row--align-center {
    align-items: center;
  }

.row--align-stretch {
    align-items: stretch;
  }

.row--align-baseline {
    align-items: baseline;
  }

.col {
  --ifm-col-width: 100%;

  flex: 1 0;
  margin-left: 0;
  max-width: var(--ifm-col-width);
  padding: 0 var(--ifm-spacing-horizontal);
  width: 100%;
}

.col[class*='col--'] {
    flex: 0 0 var(--ifm-col-width);
  }

.col--1 {
      --ifm-col-width: calc(1 / 12 * 100%);
    }

.col--offset-1 {
      margin-left: calc(1 / 12 * 100%);
    }

.col--2 {
      --ifm-col-width: calc(2 / 12 * 100%);
    }

.col--offset-2 {
      margin-left: calc(2 / 12 * 100%);
    }

.col--3 {
      --ifm-col-width: calc(3 / 12 * 100%);
    }

.col--offset-3 {
      margin-left: calc(3 / 12 * 100%);
    }

.col--4 {
      --ifm-col-width: calc(4 / 12 * 100%);
    }

.col--offset-4 {
      margin-left: calc(4 / 12 * 100%);
    }

.col--5 {
      --ifm-col-width: calc(5 / 12 * 100%);
    }

.col--offset-5 {
      margin-left: calc(5 / 12 * 100%);
    }

.col--6 {
      --ifm-col-width: calc(6 / 12 * 100%);
    }

.col--offset-6 {
      margin-left: calc(6 / 12 * 100%);
    }

.col--7 {
      --ifm-col-width: calc(7 / 12 * 100%);
    }

.col--offset-7 {
      margin-left: calc(7 / 12 * 100%);
    }

.col--8 {
      --ifm-col-width: calc(8 / 12 * 100%);
    }

.col--offset-8 {
      margin-left: calc(8 / 12 * 100%);
    }

.col--9 {
      --ifm-col-width: calc(9 / 12 * 100%);
    }

.col--offset-9 {
      margin-left: calc(9 / 12 * 100%);
    }

.col--10 {
      --ifm-col-width: calc(10 / 12 * 100%);
    }

.col--offset-10 {
      margin-left: calc(10 / 12 * 100%);
    }

.col--11 {
      --ifm-col-width: calc(11 / 12 * 100%);
    }

.col--offset-11 {
      margin-left: calc(11 / 12 * 100%);
    }

.col--12 {
      --ifm-col-width: calc(12 / 12 * 100%);
    }

.col--offset-12 {
      margin-left: calc(12 / 12 * 100%);
    }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.margin--none {
      margin: 0 !important;
    }

.margin-top--none {
        margin-top: 0 !important;
      }

.margin-left--none {
        margin-left: 0 !important;
      }

.margin-bottom--none {
        margin-bottom: 0 !important;
      }

.margin-right--none {
        margin-right: 0 !important;
      }

.margin-vert--none {
      margin-bottom: 0 !important;
      margin-top: 0 !important;
    }

.margin-horiz--none {
      margin-left: 0 !important;
      margin-right: 0 !important;
    }

.margin--xs {
      margin: 0.25rem !important;
    }

.margin-top--xs {
        margin-top: 0.25rem !important;
      }

.margin-left--xs {
        margin-left: 0.25rem !important;
      }

.margin-bottom--xs {
        margin-bottom: 0.25rem !important;
      }

.margin-right--xs {
        margin-right: 0.25rem !important;
      }

.margin-vert--xs {
      margin-bottom: 0.25rem !important;
      margin-top: 0.25rem !important;
    }

.margin-horiz--xs {
      margin-left: 0.25rem !important;
      margin-right: 0.25rem !important;
    }

.margin--sm {
      margin: 0.5rem !important;
    }

.margin-top--sm {
        margin-top: 0.5rem !important;
      }

.margin-left--sm {
        margin-left: 0.5rem !important;
      }

.margin-bottom--sm {
        margin-bottom: 0.5rem !important;
      }

.margin-right--sm {
        margin-right: 0.5rem !important;
      }

.margin-vert--sm {
      margin-bottom: 0.5rem !important;
      margin-top: 0.5rem !important;
    }

.margin-horiz--sm {
      margin-left: 0.5rem !important;
      margin-right: 0.5rem !important;
    }

.margin--md {
      margin: 1rem !important;
    }

.margin-top--md {
        margin-top: 1rem !important;
      }

.margin-left--md {
        margin-left: 1rem !important;
      }

.margin-bottom--md {
        margin-bottom: 1rem !important;
      }

.margin-right--md {
        margin-right: 1rem !important;
      }

.margin-vert--md {
      margin-bottom: 1rem !important;
      margin-top: 1rem !important;
    }

.margin-horiz--md {
      margin-left: 1rem !important;
      margin-right: 1rem !important;
    }

.margin--lg {
      margin: 2rem !important;
    }

.margin-top--lg {
        margin-top: 2rem !important;
      }

.margin-left--lg {
        margin-left: 2rem !important;
      }

.margin-bottom--lg {
        margin-bottom: 2rem !important;
      }

.margin-right--lg {
        margin-right: 2rem !important;
      }

.margin-vert--lg {
      margin-bottom: 2rem !important;
      margin-top: 2rem !important;
    }

.margin-horiz--lg {
      margin-left: 2rem !important;
      margin-right: 2rem !important;
    }

.margin--xl {
      margin: 5rem !important;
    }

.margin-top--xl {
        margin-top: 5rem !important;
      }

.margin-left--xl {
        margin-left: 5rem !important;
      }

.margin-bottom--xl {
        margin-bottom: 5rem !important;
      }

.margin-right--xl {
        margin-right: 5rem !important;
      }

.margin-vert--xl {
      margin-bottom: 5rem !important;
      margin-top: 5rem !important;
    }

.margin-horiz--xl {
      margin-left: 5rem !important;
      margin-right: 5rem !important;
    }

.padding--none {
      padding: 0 !important;
    }

.padding-top--none {
        padding-top: 0 !important;
      }

.padding-left--none {
        padding-left: 0 !important;
      }

.padding-bottom--none {
        padding-bottom: 0 !important;
      }

.padding-right--none {
        padding-right: 0 !important;
      }

.padding-vert--none {
      padding-bottom: 0 !important;
      padding-top: 0 !important;
    }

.padding-horiz--none {
      padding-left: 0 !important;
      padding-right: 0 !important;
    }

.padding--xs {
      padding: 0.25rem !important;
    }

.padding-top--xs {
        padding-top: 0.25rem !important;
      }

.padding-left--xs {
        padding-left: 0.25rem !important;
      }

.padding-bottom--xs {
        padding-bottom: 0.25rem !important;
      }

.padding-right--xs {
        padding-right: 0.25rem !important;
      }

.padding-vert--xs {
      padding-bottom: 0.25rem !important;
      padding-top: 0.25rem !important;
    }

.padding-horiz--xs {
      padding-left: 0.25rem !important;
      padding-right: 0.25rem !important;
    }

.padding--sm {
      padding: 0.5rem !important;
    }

.padding-top--sm {
        padding-top: 0.5rem !important;
      }

.padding-left--sm {
        padding-left: 0.5rem !important;
      }

.padding-bottom--sm {
        padding-bottom: 0.5rem !important;
      }

.padding-right--sm {
        padding-right: 0.5rem !important;
      }

.padding-vert--sm {
      padding-bottom: 0.5rem !important;
      padding-top: 0.5rem !important;
    }

.padding-horiz--sm {
      padding-left: 0.5rem !important;
      padding-right: 0.5rem !important;
    }

.padding--md {
      padding: 1rem !important;
    }

.padding-top--md {
        padding-top: 1rem !important;
      }

.padding-left--md {
        padding-left: 1rem !important;
      }

.padding-bottom--md {
        padding-bottom: 1rem !important;
      }

.padding-right--md {
        padding-right: 1rem !important;
      }

.padding-vert--md {
      padding-bottom: 1rem !important;
      padding-top: 1rem !important;
    }

.padding-horiz--md {
      padding-left: 1rem !important;
      padding-right: 1rem !important;
    }

.padding--lg {
      padding: 2rem !important;
    }

.padding-top--lg {
        padding-top: 2rem !important;
      }

.padding-left--lg {
        padding-left: 2rem !important;
      }

.padding-bottom--lg {
        padding-bottom: 2rem !important;
      }

.padding-right--lg {
        padding-right: 2rem !important;
      }

.padding-vert--lg {
      padding-bottom: 2rem !important;
      padding-top: 2rem !important;
    }

.padding-horiz--lg {
      padding-left: 2rem !important;
      padding-right: 2rem !important;
    }

.padding--xl {
      padding: 5rem !important;
    }

.padding-top--xl {
        padding-top: 5rem !important;
      }

.padding-left--xl {
        padding-left: 5rem !important;
      }

.padding-bottom--xl {
        padding-bottom: 5rem !important;
      }

.padding-right--xl {
        padding-right: 5rem !important;
      }

.padding-vert--xl {
      padding-bottom: 5rem !important;
      padding-top: 5rem !important;
    }

.padding-horiz--xl {
      padding-left: 5rem !important;
      padding-right: 5rem !important;
    }

/* Content */

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

code {
  background-color: var(--ifm-code-background);
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
  border-radius: var(--ifm-code-border-radius);
  font-family: var(--ifm-font-family-monospace);
  font-size: var(--ifm-code-font-size);
  padding: var(--ifm-code-padding-vertical) var(--ifm-code-padding-horizontal);
  vertical-align: middle;
}

a code {
  color: inherit;
}

pre {
  background-color: var(--ifm-pre-background);
  border-radius: var(--ifm-pre-border-radius);
  color: var(--ifm-pre-color);
  font: var(--ifm-code-font-size) / var(--ifm-pre-line-height)
    var(--ifm-font-family-monospace);
  margin: 0 0 var(--ifm-spacing-vertical);
  overflow: auto;
  padding: var(--ifm-pre-padding);
}

pre code {
    background-color: transparent;
    border: none;
    font-size: 100%;
    line-height: inherit;
    padding: 0;
  }

kbd {
  background-color: var(--ifm-color-emphasis-0);
  border: 1px solid var(--ifm-color-emphasis-400);
  border-radius: 0.2rem;
  box-shadow: inset 0 -1px 0 var(--ifm-color-emphasis-400);
  color: var(--ifm-color-emphasis-800);
  font: 80% var(--ifm-font-family-monospace);
  padding: 0.15rem 0.3rem;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--ifm-heading-color);
  font-family: var(--ifm-heading-font-family);
  font-weight: var(--ifm-heading-font-weight);
  line-height: var(--ifm-heading-line-height);
  margin: var(--ifm-heading-margin-top) 0 var(--ifm-heading-margin-bottom) 0;
}

h1 {
    font-size: var(--ifm-h1-font-size);
  }

h2 {
    font-size: var(--ifm-h2-font-size);
  }

h3 {
    font-size: var(--ifm-h3-font-size);
  }

h4 {
    font-size: var(--ifm-h4-font-size);
  }

h5 {
    font-size: var(--ifm-h5-font-size);
  }

h6 {
    font-size: var(--ifm-h6-font-size);
  }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

img {
  max-width: 100%;
}

img[align='right'] {
  padding-left: var(--image-alignment-padding);
}

img[align='left'] {
  padding-right: var(--image-alignment-padding);
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.markdown {
  --ifm-h1-vertical-rhythm-top: 3;
  --ifm-h2-vertical-rhythm-top: 2;
  --ifm-h3-vertical-rhythm-top: 1.5;
  --ifm-heading-vertical-rhythm-top: 1.25;

  --ifm-h1-vertical-rhythm-bottom: 1.25;
  --ifm-heading-vertical-rhythm-bottom: 1;
}

.markdown:before {
    content: '';
    display: table;
  }

.markdown:after {
    clear: both;
    content: '';
    display: table;
  }

.markdown > *:last-child {
    margin-bottom: 0 !important;
  }

.markdown h1:first-child {
    --ifm-h1-font-size: 3rem;

    margin-bottom: calc(
      var(--ifm-h1-vertical-rhythm-bottom) * var(--ifm-leading)
    );
  }

.markdown > h2 {
    --ifm-h2-font-size: 2rem;

    margin-bottom: calc(
      var(--ifm-heading-vertical-rhythm-bottom) * var(--ifm-leading)
    );
    margin-top: calc(var(--ifm-h2-vertical-rhythm-top) * var(--ifm-leading));
  }

.markdown > h3 {
    --ifm-h3-font-size: 1.5rem;

    margin-bottom: calc(
      var(--ifm-heading-vertical-rhythm-bottom) * var(--ifm-leading)
    );
    margin-top: calc(var(--ifm-h3-vertical-rhythm-top) * var(--ifm-leading));
  }

.markdown > h4,
  .markdown > h5,
  .markdown > h6 {
    margin-bottom: calc(
      var(--ifm-heading-vertical-rhythm-bottom) * var(--ifm-leading)
    );
    margin-top: calc(
      var(--ifm-heading-vertical-rhythm-top) * var(--ifm-leading)
    );
  }

/* Consistent spacing between content paragraphs. */

.markdown > pre,
  .markdown > ul,
  .markdown > p {
    margin-bottom: var(--ifm-leading);
  }

.markdown li {
    word-wrap: break-word;
  }

.markdown li > p {
      margin-top: var(--ifm-list-paragraph-margin);
    }

.markdown li + li {
      margin-top: var(--ifm-list-item-margin);
    }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

/* Lists */

ul,
ol {
  margin: 0 0 var(--ifm-list-margin);
  padding-left: var(--ifm-list-left-padding);
}

ol ol,
ul ol {
  list-style-type: lower-roman;
}

ul ul,
ul ol,
ol ol,
ol ul {
  margin: 0;
}

ul ul ol,
ul ol ol,
ol ul ol,
ol ol ol {
  list-style-type: lower-alpha;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

table {
  border-collapse: collapse;
  display: block;
  margin-bottom: var(--ifm-spacing-vertical);
  overflow: auto;
}

table thead tr {
    border-bottom: 2px solid var(--ifm-table-border-color);
  }

table thead {
    background-color: var(--ifm-table-stripe-background);
  }

table tr {
    background-color: var(--ifm-table-background);
    border-top: var(--ifm-table-border-width) solid
      var(--ifm-table-border-color);
  }

table tr:nth-child(2n) {
    background-color: var(--ifm-table-stripe-background);
  }

table th,
  table td {
    border: var(--ifm-table-border-width) solid var(--ifm-table-border-color);
    padding: var(--ifm-table-cell-padding);
  }

table th {
    background-color: var(--ifm-table-head-background);
    color: var(--ifm-table-head-color);
    font-weight: var(--ifm-table-head-font-weight);
  }

table td {
    color: var(--ifm-table-cell-color);
  }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

strong {
  font-weight: var(--ifm-font-weight-bold);
}

/* Links */

a {
  color: var(--ifm-link-color);
  /* autoprefixer: ignore next */
  text-decoration: var(--ifm-link-decoration);
  transition: color var(--ifm-transition-fast) var(--ifm-transition-timing-default);
}

a:hover {
    color: var(--ifm-link-hover-color);
    /* autoprefixer: ignore next */
    text-decoration: var(--ifm-link-hover-decoration);
  }

a:not([href]) {
    -webkit-text-decoration: none;
    text-decoration: none;
  }

/* Paragraphs */

p {
  margin: 0 0 var(--ifm-paragraph-margin-bottom);
}

/* Blockquotes */

blockquote {
  border-left: var(--ifm-blockquote-border-left-width) solid
    var(--ifm-blockquote-border-color);
  box-shadow: var(--ifm-blockquote-shadow);
  color: var(--ifm-blockquote-color);
  font-size: var(--ifm-blockquote-font-size);
  margin: 0 0 var(--ifm-spacing-vertical);
  padding: var(--ifm-blockquote-padding-vertical)
    var(--ifm-blockquote-padding-horizontal);
}

blockquote > :first-child {
    margin-top: 0;
  }

blockquote > :last-child {
    margin-bottom: 0;
  }

/* Horizontal Rules */

hr {
  background-color: var(--ifm-hr-background-color);
  border: 0;
  height: var(--ifm-hr-height);
  margin: var(--ifm-hr-margin-vertical) 0;
}

/* Utilities */

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.shadow--lw {
    box-shadow: var(--ifm-global-shadow-lw) !important;
  }

.shadow--md {
    box-shadow: var(--ifm-global-shadow-md) !important;
  }

.shadow--tl {
    box-shadow: var(--ifm-global-shadow-tl) !important;
  }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.text--primary {
    color: var(--ifm-color-primary);
  }

.text--secondary {
    color: var(--ifm-color-secondary);
  }

.text--success {
    color: var(--ifm-color-success);
  }

.text--info {
    color: var(--ifm-color-info);
  }

.text--warning {
    color: var(--ifm-color-warning);
  }

.text--danger {
    color: var(--ifm-color-danger);
  }

.text--center {
    text-align: center;
  }

.text--left {
    text-align: left;
  }

.text--justify {
    text-align: justify;
  }

.text--right {
    text-align: right;
  }

.text--capitalize {
    text-transform: capitalize;
  }

.text--lowercase {
    text-transform: lowercase;
  }

.text--uppercase {
    text-transform: uppercase;
  }

.text--light {
    font-weight: var(--ifm-font-weight-light);
  }

.text--normal {
    font-weight: var(--ifm-font-weight-normal);
  }

.text--semibold {
    font-weight: var(--ifm-font-weight-semibold);
  }

.text--bold {
    font-weight: var(--ifm-font-weight-bold);
  }

.text--italic {
  font-style: italic;
}

.text--truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text--break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

.text--no-decoration,
  .text--no-decoration:hover {
    -webkit-text-decoration: none;
    text-decoration: none;
  }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.clean-btn {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}

.clean-list {
  list-style: none;
  padding-left: 0;
}

/* Components */

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.alert--primary {
      --ifm-alert-background-color: var(
        --ifm-color-primary-contrast-background
      );
      --ifm-alert-background-color-highlight: rgba(53, 120, 229, 0.15);
      --ifm-alert-foreground-color: var(
        --ifm-color-primary-contrast-foreground
      );
      --ifm-alert-border-color: var(--ifm-color-primary-dark);
    }

.alert--secondary {
      --ifm-alert-background-color: var(
        --ifm-color-secondary-contrast-background
      );
      --ifm-alert-background-color-highlight: rgba(235, 237, 240, 0.15);
      --ifm-alert-foreground-color: var(
        --ifm-color-secondary-contrast-foreground
      );
      --ifm-alert-border-color: var(--ifm-color-secondary-dark);
    }

.alert--success {
      --ifm-alert-background-color: var(
        --ifm-color-success-contrast-background
      );
      --ifm-alert-background-color-highlight: rgba(0, 164, 0, 0.15);
      --ifm-alert-foreground-color: var(
        --ifm-color-success-contrast-foreground
      );
      --ifm-alert-border-color: var(--ifm-color-success-dark);
    }

.alert--info {
      --ifm-alert-background-color: var(
        --ifm-color-info-contrast-background
      );
      --ifm-alert-background-color-highlight: rgba(84, 199, 236, 0.15);
      --ifm-alert-foreground-color: var(
        --ifm-color-info-contrast-foreground
      );
      --ifm-alert-border-color: var(--ifm-color-info-dark);
    }

.alert--warning {
      --ifm-alert-background-color: var(
        --ifm-color-warning-contrast-background
      );
      --ifm-alert-background-color-highlight: rgba(255, 186, 0, 0.15);
      --ifm-alert-foreground-color: var(
        --ifm-color-warning-contrast-foreground
      );
      --ifm-alert-border-color: var(--ifm-color-warning-dark);
    }

.alert--danger {
      --ifm-alert-background-color: var(
        --ifm-color-danger-contrast-background
      );
      --ifm-alert-background-color-highlight: rgba(250, 56, 62, 0.15);
      --ifm-alert-foreground-color: var(
        --ifm-color-danger-contrast-foreground
      );
      --ifm-alert-border-color: var(--ifm-color-danger-dark);
    }

.alert {

  --ifm-code-background: var(--ifm-alert-background-color-highlight);
  --ifm-link-color: var(--ifm-alert-foreground-color);
  --ifm-link-hover-color: var(--ifm-alert-foreground-color);
  --ifm-link-decoration: underline;
  --ifm-tabs-color: var(--ifm-alert-foreground-color);
  --ifm-tabs-color-active: var(--ifm-alert-foreground-color);
  --ifm-tabs-color-active-border: var(--ifm-alert-border-color);

  background-color: var(--ifm-alert-background-color);
  border: var(--ifm-alert-border-width) solid var(--ifm-alert-border-color);
  border-left-width: var(--ifm-alert-border-left-width);
  border-radius: var(--ifm-alert-border-radius);
  box-shadow: var(--ifm-alert-shadow);
  color: var(--ifm-alert-foreground-color);
  padding: var(--ifm-alert-padding-vertical) var(--ifm-alert-padding-horizontal);
}

.alert__heading {
    align-items: center;
    display: flex;
    font: bold var(--ifm-h5-font-size) / var(--ifm-heading-line-height)
      var(--ifm-heading-font-family);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
  }

.alert__icon {
    display: inline-flex;
    margin-right: 0.4em;
  }

.alert__icon svg {
      fill: var(--ifm-alert-foreground-color);
      stroke: var(--ifm-alert-foreground-color);
      stroke-width: 0;
    }

.alert .close {
    color: var(--ifm-alert-foreground-color);
    margin: calc(var(--ifm-alert-padding-vertical) * -1)
      calc(var(--ifm-alert-padding-horizontal) * -1) 0 0;

    opacity: 0.75;
  }

.alert .close:hover,
    .alert .close:focus {
      opacity: 1;
    }

.alert a {
    text-decoration-color: var(--ifm-alert-border-color);
  }

.alert a:hover {
      text-decoration-thickness: 2px;
    }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.avatar {
  column-gap: var(--ifm-avatar-intro-margin);
  display: flex;
}

.avatar__photo {
    border-radius: 50%;
    display: block;
    height: var(--ifm-avatar-photo-size);
    overflow: hidden;
    width: var(--ifm-avatar-photo-size);
  }

.avatar__photo--sm {
      --ifm-avatar-photo-size: 2rem;
    }

.avatar__photo--lg {
      --ifm-avatar-photo-size: 4rem;
    }

.avatar__photo--xl {
      --ifm-avatar-photo-size: 6rem;
    }

.avatar__intro {
    display: flex;
    flex: 1 1;
    flex-direction: column;
    justify-content: center;
    text-align: var(--ifm-avatar-intro-alignment);
  }

.avatar__name {
    font: bold var(--ifm-h4-font-size) / var(--ifm-heading-line-height)
      var(--ifm-font-family-base);
  }

.avatar__subtitle {
    margin-top: 0.25rem;
  }

.avatar--vertical {
    --ifm-avatar-intro-alignment: center;
    --ifm-avatar-intro-margin: 0.5rem;

    align-items: center;
    flex-direction: column;
  }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.badge {
  background-color: var(--ifm-badge-background-color);
  border: var(--ifm-badge-border-width) solid var(--ifm-badge-border-color);
  border-radius: var(--ifm-badge-border-radius);
  color: var(--ifm-badge-color);
  display: inline-block;
  font-size: 75%;
  font-weight: var(--ifm-font-weight-bold);
  line-height: 1;
  padding: var(--ifm-badge-padding-vertical) var(--ifm-badge-padding-horizontal);
}

.badge--primary {
      --ifm-badge-background-color: var(--ifm-color-primary);
      --ifm-badge-border-color: var(--ifm-badge-background-color);
    }

.badge--secondary {
      --ifm-badge-background-color: var(--ifm-color-secondary);
      --ifm-badge-border-color: var(--ifm-badge-background-color);
    color: var(--ifm-color-black);
    }

.badge--success {
      --ifm-badge-background-color: var(--ifm-color-success);
      --ifm-badge-border-color: var(--ifm-badge-background-color);
    }

.badge--info {
      --ifm-badge-background-color: var(--ifm-color-info);
      --ifm-badge-border-color: var(--ifm-badge-background-color);
    }

.badge--warning {
      --ifm-badge-background-color: var(--ifm-color-warning);
      --ifm-badge-border-color: var(--ifm-badge-background-color);
    }

.badge--danger {
      --ifm-badge-background-color: var(--ifm-color-danger);
      --ifm-badge-border-color: var(--ifm-badge-background-color);
    }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.breadcrumbs {
  margin-bottom: 0;
  padding-left: 0;
}

.breadcrumbs__item {
    display: inline-block;
  }

.breadcrumbs__item:not(:last-child):after {
      background: var(--ifm-breadcrumb-separator) center;
      content: ' ';
      display: inline-block;
      filter: var(--ifm-breadcrumb-separator-filter);
      height: calc(
        var(--ifm-breadcrumb-separator-size) *
          var(--ifm-breadcrumb-size-multiplier) *
          var(--ifm-breadcrumb-separator-size-multiplier)
      );
      margin: 0 var(--ifm-breadcrumb-spacing);
      opacity: 0.5;
      width: calc(
        var(--ifm-breadcrumb-separator-size) *
          var(--ifm-breadcrumb-size-multiplier) *
          var(--ifm-breadcrumb-separator-size-multiplier)
      );
      /*rtl:raw:
      transform: rotate(180deg);
      */
    }

.breadcrumbs__item--active .breadcrumbs__link {
        background: var(--ifm-breadcrumb-item-background-active);
        color: var(--ifm-breadcrumb-color-active);
      }

.breadcrumbs__link {
    border-radius: var(--ifm-breadcrumb-border-radius);
    color: var(--ifm-font-color-base);
    display: inline-block;
    font-size: calc(1rem * var(--ifm-breadcrumb-size-multiplier));
    padding: calc(
        var(--ifm-breadcrumb-padding-vertical) *
          var(--ifm-breadcrumb-size-multiplier)
      )
      calc(
        var(--ifm-breadcrumb-padding-horizontal) *
          var(--ifm-breadcrumb-size-multiplier)
      );
    transition-property: background, color;
    transition-duration: var(--ifm-transition-fast);
    transition-timing-function: var(--ifm-transition-timing-default);
  }

.breadcrumbs__link:link:hover, .breadcrumbs__link:visited:hover, area[href].breadcrumbs__link:hover {
      background: var(--ifm-breadcrumb-item-background-active);
      -webkit-text-decoration: none;
      text-decoration: none;
    }

.breadcrumbs__link:any-link:hover {
      background: var(--ifm-breadcrumb-item-background-active);
      -webkit-text-decoration: none;
      text-decoration: none;
    }

.breadcrumbs--sm {
    --ifm-breadcrumb-size-multiplier: 0.8;
  }

.breadcrumbs--lg {
    --ifm-breadcrumb-size-multiplier: 1.2;
  }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.button {
  background-color: var(--ifm-button-background-color);
  border: var(--ifm-button-border-width) solid var(--ifm-button-border-color);
  border-radius: var(--ifm-button-border-radius);
  color: var(--ifm-button-color);
  cursor: pointer;
  display: inline-block;
  font-size: calc(0.875rem * var(--ifm-button-size-multiplier));
  font-weight: var(--ifm-button-font-weight);
  line-height: 1.5;
  padding: calc(
      var(--ifm-button-padding-vertical) * var(--ifm-button-size-multiplier)
    )
    calc(
      var(--ifm-button-padding-horizontal) * var(--ifm-button-size-multiplier)
    );
  text-align: center;
  -webkit-user-select: none;
          user-select: none;
  vertical-align: middle;
  white-space: nowrap;
  transition-property: color, background, border-color;
  transition-duration: var(--ifm-button-transition-duration);
  transition-timing-function: var(--ifm-transition-timing-default);
}

.button:hover {
    color: var(--ifm-button-color); /* Override for button links. */
    -webkit-text-decoration: none;
    text-decoration: none;
  }

.button--outline {
    --ifm-button-background-color: transparent;
    --ifm-button-color: var(--ifm-button-border-color);
  }

.button--outline:hover {
      --ifm-button-background-color: var(--ifm-button-border-color);
    }

.button--outline:hover,
    .button--outline:active,
    .button--outline.button--active {
      --ifm-button-color: var(--ifm-font-color-base-inverse);
    }

.button--link {
    --ifm-button-background-color: transparent;
    --ifm-button-border-color: transparent;

    color: var(--ifm-link-color);
    /* autoprefixer: ignore next */
    text-decoration: var(--ifm-link-decoration);
  }

.button--link:hover,
    .button--link:active,
    .button--link.button--active {
      color: var(--ifm-link-hover-color);
      /* autoprefixer: ignore next */
      text-decoration: var(--ifm-link-hover-decoration);
    }

.button.disabled,
  .button:disabled,
  .button[disabled] {
    opacity: 0.65;
    pointer-events: none;
  }

.button--sm {
    --ifm-button-size-multiplier: 0.8;
  }

.button--lg {
    --ifm-button-size-multiplier: 1.35;
  }

.button--block {
    display: block;
    width: 100%;
  }

.button.button--secondary {
    color: var(--ifm-color-gray-900);
  }

.button.button--secondary.button--outline:not(.button--active):not(:hover) {
      color: var(--ifm-font-color-base);
    }

:where(.button--primary) {
      --ifm-button-background-color: var(--ifm-color-primary);
      --ifm-button-border-color: var(--ifm-color-primary);
    }

:where(.button--primary):not(.button--outline):hover {
        --ifm-button-background-color: var(--ifm-color-primary-dark);
        --ifm-button-border-color: var(--ifm-color-primary-dark);
      }

.button--primary:active,
      .button--primary.button--active {
        --ifm-button-background-color: var(--ifm-color-primary-darker);
        --ifm-button-border-color: var(--ifm-color-primary-darker);
      }

:where(.button--secondary) {
      --ifm-button-background-color: var(--ifm-color-secondary);
      --ifm-button-border-color: var(--ifm-color-secondary);
    }

:where(.button--secondary):not(.button--outline):hover {
        --ifm-button-background-color: var(--ifm-color-secondary-dark);
        --ifm-button-border-color: var(--ifm-color-secondary-dark);
      }

.button--secondary:active,
      .button--secondary.button--active {
        --ifm-button-background-color: var(--ifm-color-secondary-darker);
        --ifm-button-border-color: var(--ifm-color-secondary-darker);
      }

:where(.button--success) {
      --ifm-button-background-color: var(--ifm-color-success);
      --ifm-button-border-color: var(--ifm-color-success);
    }

:where(.button--success):not(.button--outline):hover {
        --ifm-button-background-color: var(--ifm-color-success-dark);
        --ifm-button-border-color: var(--ifm-color-success-dark);
      }

.button--success:active,
      .button--success.button--active {
        --ifm-button-background-color: var(--ifm-color-success-darker);
        --ifm-button-border-color: var(--ifm-color-success-darker);
      }

:where(.button--info) {
      --ifm-button-background-color: var(--ifm-color-info);
      --ifm-button-border-color: var(--ifm-color-info);
    }

:where(.button--info):not(.button--outline):hover {
        --ifm-button-background-color: var(--ifm-color-info-dark);
        --ifm-button-border-color: var(--ifm-color-info-dark);
      }

.button--info:active,
      .button--info.button--active {
        --ifm-button-background-color: var(--ifm-color-info-darker);
        --ifm-button-border-color: var(--ifm-color-info-darker);
      }

:where(.button--warning) {
      --ifm-button-background-color: var(--ifm-color-warning);
      --ifm-button-border-color: var(--ifm-color-warning);
    }

:where(.button--warning):not(.button--outline):hover {
        --ifm-button-background-color: var(--ifm-color-warning-dark);
        --ifm-button-border-color: var(--ifm-color-warning-dark);
      }

.button--warning:active,
      .button--warning.button--active {
        --ifm-button-background-color: var(--ifm-color-warning-darker);
        --ifm-button-border-color: var(--ifm-color-warning-darker);
      }

:where(.button--danger) {
      --ifm-button-background-color: var(--ifm-color-danger);
      --ifm-button-border-color: var(--ifm-color-danger);
    }

:where(.button--danger):not(.button--outline):hover {
        --ifm-button-background-color: var(--ifm-color-danger-dark);
        --ifm-button-border-color: var(--ifm-color-danger-dark);
      }

.button--danger:active,
      .button--danger.button--active {
        --ifm-button-background-color: var(--ifm-color-danger-darker);
        --ifm-button-border-color: var(--ifm-color-danger-darker);
      }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.button-group {
  display: inline-flex;
  gap: var(--ifm-button-group-spacing);
}

.button-group > .button:not(:first-child) {
      border-bottom-left-radius: 0;
      border-top-left-radius: 0;
    }

.button-group > .button:not(:last-child) {
      border-bottom-right-radius: 0;
      border-top-right-radius: 0;
    }

.button-group--block {
    display: flex;
    justify-content: stretch;
  }

.button-group--block > .button {
      flex-grow: 1;
    }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.card {
  background-color: var(--ifm-card-background-color);
  border-radius: var(--ifm-card-border-radius);
  box-shadow: var(--ifm-global-shadow-lw);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Because of border-radius. */

.card--full-height {
    height: 100%;
  }

.card__image {
    padding-top: var(--ifm-card-vertical-spacing);
  }

.card__image:first-child {
      padding-top: 0;
    }

.card__header,
  .card__body,
  .card__footer {
    padding: var(--ifm-card-vertical-spacing) var(--ifm-card-horizontal-spacing);
  }

.card__header:not(:last-child), .card__body:not(:last-child), .card__footer:not(:last-child) {
      padding-bottom: 0;
    }

.card__header > :last-child, .card__body > :last-child, .card__footer > :last-child {
      margin-bottom: 0;
    }

.card__footer {
    margin-top: auto; /* Pushes the footer to the bottom of the card. */
  }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.table-of-contents {
  font-size: 0.8rem;
  margin-bottom: 0;
  padding: var(--ifm-toc-padding-vertical) 0;
}

.table-of-contents,
  .table-of-contents ul {
    list-style: none;
    padding-left: var(--ifm-toc-padding-horizontal);
  }

.table-of-contents li {
    margin: var(--ifm-toc-padding-vertical) var(--ifm-toc-padding-horizontal);
  }

.table-of-contents__left-border {
    border-left: 1px solid var(--ifm-toc-border-color);
  }

.table-of-contents__link {
    color: var(--ifm-toc-link-color);
    display: block;
  }

.table-of-contents__link:hover,
    .table-of-contents__link:hover code,
    .table-of-contents__link--active,
    .table-of-contents__link--active code {
      color: var(--ifm-color-primary);
      -webkit-text-decoration: none;
      text-decoration: none;
    }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.close {
  color: var(--ifm-color-black);
  float: right;
  font-size: 1.5rem;
  font-weight: var(--ifm-font-weight-bold);
  line-height: 1;
  opacity: 0.5;
  padding: 1rem;
  transition: opacity var(--ifm-transition-fast) var(--ifm-transition-timing-default);
}

.close:hover {
    opacity: 0.7;
  }

.close:focus {
    opacity: 0.8;
  }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.dropdown {
  display: inline-flex;
  font-weight: var(--ifm-dropdown-font-weight);
  position: relative;
  vertical-align: top;
}

.dropdown--hoverable:hover .dropdown__menu, .dropdown--show .dropdown__menu {
      opacity: 1;
      pointer-events: all;
      transform: translateY(-1px);
      visibility: visible;
    }

.dropdown--right .dropdown__menu {
      left: inherit;
      right: 0;
    }

.dropdown--nocaret .navbar__link:after {
    content: none !important;
  }

.dropdown__menu {
    background-color: var(--ifm-dropdown-background-color);
    border-radius: var(--ifm-global-radius);
    box-shadow: var(--ifm-global-shadow-md);
    left: 0;
    list-style: none;
    max-height: 80vh;
    min-width: 10rem;
    opacity: 0;
    overflow-y: auto;
    padding: 0.5rem;
    pointer-events: none;
    position: absolute;
    top: calc(100% - var(--ifm-navbar-item-padding-vertical) + 0.3rem);
    transform: translateY(-0.625rem);
    visibility: hidden;
    z-index: var(--ifm-z-index-dropdown);
    transition-property: opacity, transform, visibility;
    transition-duration: var(--ifm-transition-fast);
    transition-timing-function: var(--ifm-transition-timing-default);
  }

.dropdown__link {
    border-radius: 0.25rem;
    color: var(--ifm-dropdown-link-color);
    display: block;
    font-size: 0.875rem;
    margin-top: 0.2rem;
    padding: 0.25rem 0.5rem;
    white-space: nowrap;
  }

.dropdown__link:hover,
    .dropdown__link--active {
      background-color: var(--ifm-dropdown-hover-background-color);
      color: var(--ifm-dropdown-link-color);
      -webkit-text-decoration: none;
      text-decoration: none;
    }

.dropdown__link--active,
    .dropdown__link--active:hover {
      --ifm-dropdown-link-color: var(--ifm-link-color);
    }

.dropdown > .navbar__link:after {
    border-color: currentColor transparent;
    border-style: solid;
    border-width: 0.4em 0.4em 0;
    content: '';
    display: inline-block;
    margin-left: 0.3em;
    position: relative;
    top: 2px;
    transform: translateY(-50%);
  }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.footer {
  background-color: var(--ifm-footer-background-color);
  color: var(--ifm-footer-color);
  padding: var(--ifm-footer-padding-vertical)
    var(--ifm-footer-padding-horizontal);
}

.footer--dark {
    --ifm-footer-background-color: #303846;
    --ifm-footer-color: var(--ifm-footer-link-color);
    --ifm-footer-link-color: var(--ifm-color-secondary);
    --ifm-footer-title-color: var(--ifm-color-white);
  }

.footer__links {
    margin-bottom: 1rem;
  }

.footer__link-item {
    color: var(--ifm-footer-link-color);
    line-height: 2;
  }

.footer__link-item:hover {
      color: var(--ifm-footer-link-hover-color);
    }

.footer__link-separator {
    margin: 0 var(--ifm-footer-link-horizontal-spacing);
  }

.footer__logo {
    margin-top: 1rem;
    max-width: var(--ifm-footer-logo-max-width);
  }

.footer__title {
    color: var(--ifm-footer-title-color);
    font: bold var(--ifm-h4-font-size) / var(--ifm-heading-line-height)
      var(--ifm-font-family-base);
    margin-bottom: var(--ifm-heading-margin-bottom);
  }

.footer__item {
    margin-top: 0;
  }

.footer__items {
    margin-bottom: 0;
  }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

[type='checkbox'] {
  padding: 0;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.hero {
  align-items: center;
  background-color: var(--ifm-hero-background-color);
  color: var(--ifm-hero-text-color);
  display: flex;
  padding: 4rem 2rem;
}

.hero--primary {
    --ifm-hero-background-color: var(--ifm-color-primary);
    --ifm-hero-text-color: var(--ifm-font-color-base-inverse);
  }

.hero--dark {
    --ifm-hero-background-color: #303846;
    --ifm-hero-text-color: var(--ifm-color-white);
  }

.hero__title {
    font-size: 3rem;
  }

.hero__subtitle {
    font-size: 1.5rem;
  }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.menu {
  font-weight: var(--ifm-font-weight-semibold);
  overflow-x: hidden;
}

.menu__list {
    list-style: none;
    margin: 0;
    padding-left: 0;
  }

/* Non-top level menus */

.menu__list .menu__list {
      flex: 0 0 100%;
      margin-top: 0.25rem;
      padding-left: var(--ifm-menu-link-padding-horizontal);
    }

.menu__list-item:not(:first-child) {
      margin-top: 0.25rem;
    }

.menu__list-item--collapsed .menu__list {
        height: 0;
        overflow: hidden;
      }

.menu__list-item--collapsed .menu__link--sublist:after,
      .menu__list-item--collapsed .menu__caret:before {
        transform: rotateZ(90deg);
      }

.menu__list-item-collapsible {
      flex-wrap: wrap;
      position: relative;
      border-radius: 0.25rem;
      display: flex;
      transition: background var(--ifm-transition-fast) var(--ifm-transition-timing-default);
    }

.menu__list-item-collapsible:hover {
    background: var(--ifm-menu-color-background-hover);
  }

.menu__list-item-collapsible--active {
        background: var(--ifm-menu-color-background-hover);
      }

.menu__list-item-collapsible .menu__link:hover,
        .menu__list-item-collapsible .menu__link--active {
          background: none !important;
        }

.menu__link,
  .menu__caret {
    align-items: center;
    border-radius: 0.25rem;
    display: flex;
    transition: background var(--ifm-transition-fast) var(--ifm-transition-timing-default);
  }

.menu__link:hover, .menu__caret:hover {
    background: var(--ifm-menu-color-background-hover);
  }

.menu__link {
    color: var(--ifm-menu-color);
    flex: 1;
    line-height: 1.25;
    padding: var(--ifm-menu-link-padding-vertical)
      var(--ifm-menu-link-padding-horizontal);
  }

.menu__link:hover {
      -webkit-text-decoration: none;
      text-decoration: none;
      color: var(--ifm-menu-color);
      transition: color var(--ifm-transition-fast) var(--ifm-transition-timing-default);
    }

.menu__link--sublist-caret:after {
      content: '';
      margin-left: auto;
      min-width: 1.25rem;
      background: var(--ifm-menu-link-sublist-icon) 50% / 2rem 2rem;
      filter: var(--ifm-menu-link-sublist-icon-filter);
      height: 1.25rem;
      transform: rotate(180deg);
      width: 1.25rem;
      transition: transform var(--ifm-transition-fast) linear;
    }

.menu__link--active {
      color: var(--ifm-menu-color-active);
    }

.menu__link--active:hover {
        color: var(--ifm-menu-color-active);
      }

.menu__link--active:not(.menu__link--sublist) {
        background-color: var(--ifm-menu-color-background-active);
      }

.menu__caret {
    padding: var(--ifm-menu-link-padding-vertical)
      var(--ifm-menu-link-padding-horizontal);
  }

.menu__caret:before {
      content: '';
      background: var(--ifm-menu-link-sublist-icon) 50% / 2rem 2rem;
      filter: var(--ifm-menu-link-sublist-icon-filter);
      height: 1.25rem;
      transform: rotate(180deg);
      width: 1.25rem;
      transition: transform var(--ifm-transition-fast) linear;
    }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

html[data-theme='dark'],
.navbar--dark {
  --ifm-menu-link-sublist-icon-filter: invert(100%) sepia(94%) saturate(17%)
    hue-rotate(223deg) brightness(104%) contrast(98%);
}

.navbar {
  background-color: var(--ifm-navbar-background-color);
  box-shadow: var(--ifm-navbar-shadow);
  display: flex;
  height: var(--ifm-navbar-height);
  padding: var(--ifm-navbar-padding-vertical)
    var(--ifm-navbar-padding-horizontal);
}

.navbar > .container,
  .navbar > .container-fluid {
    display: flex;
  }

.navbar--fixed-top {
    position: sticky;
    top: 0;
    z-index: var(--ifm-z-index-fixed);
  }

.navbar__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
  }

.navbar__brand {
    align-items: center;
    color: var(--ifm-navbar-link-color);
    display: flex;
    margin-right: 1rem;
    min-width: 0;
  }

.navbar__brand:hover {
      color: var(--ifm-navbar-link-hover-color);
      -webkit-text-decoration: none;
      text-decoration: none;
    }

.navbar__title {
    flex: 1 1 auto;
  }

.navbar__toggle {
    display: none;
    margin-right: 0.5rem;
  }

.navbar__logo {
    flex: 0 0 auto;
    height: 2rem;
    margin-right: 0.5rem;
  }

.navbar__logo img {
      height: 100%;
    }

.navbar__items {
    align-items: center;
    display: flex;
    flex: 1;
    min-width: 0;
  }

.navbar__items--center {
      flex: 0 0 auto;
    }

.navbar__items--center .navbar__brand {
        margin: 0;
      }

.navbar__items--center + .navbar__items--right {
        flex: 1;
      }

.navbar__items--right {
      flex: 0 0 auto;
      justify-content: flex-end;
    }

.navbar__items--right > :last-child {
        padding-right: 0;
      }

.navbar__item {
    display: inline-block;
    padding: var(--ifm-navbar-item-padding-vertical)
      var(--ifm-navbar-item-padding-horizontal);
  }

.navbar__item.dropdown .navbar__link:not([href]) {
        pointer-events: none;
      }

.navbar__link {
    color: var(--ifm-navbar-link-color);
    font-weight: var(--ifm-font-weight-semibold);
  }

.navbar__link:hover,
    .navbar__link--active {
      color: var(--ifm-navbar-link-hover-color);
      -webkit-text-decoration: none;
      text-decoration: none;
    }

.navbar--dark,
  .navbar--primary {
    --ifm-menu-color: var(--ifm-color-gray-300);
    --ifm-navbar-link-color: var(--ifm-color-gray-100);
    --ifm-navbar-search-input-background-color: rgba(255, 255, 255, 0.1);
    --ifm-navbar-search-input-placeholder-color: rgba(255, 255, 255, 0.5);

    color: var(--ifm-color-white);
  }

.navbar--dark {
    --ifm-navbar-background-color: #242526;
    --ifm-navbar-link-hover-color: var(--ifm-color-primary);
    --ifm-menu-color-background-active: rgba(255, 255, 255, 0.05);
    --ifm-navbar-search-input-color: var(--ifm-color-white);
  }

.navbar--primary {
    --ifm-navbar-background-color: var(--ifm-color-primary);
    --ifm-navbar-link-hover-color: var(--ifm-color-white);
    --ifm-menu-color-active: var(--ifm-color-white);
    --ifm-navbar-search-input-color: var(--ifm-color-emphasis-500);
  }

.navbar__search-input {
      appearance: none; /* Algolia will add type="search" to the input in Safari and Safari's styling will override the styling here. */
      background: var(--ifm-navbar-search-input-background-color)
        var(--ifm-navbar-search-input-icon) no-repeat 0.75rem center / 1rem 1rem;
      border: none;
      border-radius: 2rem;
      color: var(--ifm-navbar-search-input-color);
      cursor: text;
      display: inline-block;
      font-size: 1rem;
      height: 2rem;
      padding: 0 0.5rem 0 2.25rem;
      width: 12.5rem;
    }

.navbar__search-input::placeholder {
        color: var(--ifm-navbar-search-input-placeholder-color);
      }

.navbar-sidebar {
    background-color: var(--ifm-navbar-background-color);
    bottom: 0;
    box-shadow: var(--ifm-global-shadow-md);
    left: 0;
    opacity: 0;
    overflow-x: hidden;
    position: fixed;
    top: 0;
    transform: translate3d(-100%, 0, 0);
    visibility: hidden;
    width: var(--ifm-navbar-sidebar-width);
    transition-property: opacity, visibility, transform;
    transition-duration: var(--ifm-transition-fast);
    transition-timing-function: ease-in-out;
  }

.navbar-sidebar--show .navbar-sidebar,
      .navbar-sidebar--show .navbar-sidebar__backdrop {
        opacity: 1;
        visibility: visible;
      }

.navbar-sidebar--show .navbar-sidebar {
        transform: translate3d(0, 0, 0);
      }

.navbar-sidebar__backdrop {
      background-color: rgba(0, 0, 0, 0.6);
      bottom: 0;
      left: 0;
      opacity: 0;
      position: fixed;
      right: 0;
      top: 0;
      visibility: hidden;
      transition-property: opacity, visibility;
      transition-duration: var(--ifm-transition-fast);
      transition-timing-function: ease-in-out;
    }

.navbar-sidebar__brand {
      align-items: center;
      box-shadow: var(--ifm-navbar-shadow);
      display: flex;
      flex: 1;
      height: var(--ifm-navbar-height);
      padding: var(--ifm-navbar-padding-vertical)
        var(--ifm-navbar-padding-horizontal);
    }

.navbar-sidebar__items {
      display: flex;
      height: calc(100% - var(--ifm-navbar-height));
      transform: translateZ(0);
      transition: transform var(--ifm-transition-fast) ease-in-out;
    }

.navbar-sidebar__items--show-secondary {
        transform: translate3d(
          calc((var(--ifm-navbar-sidebar-width)) * -1),
          0,
          0
        );
      }

.navbar-sidebar__item {
      flex-shrink: 0;
      padding: 0.5rem;
      width: calc(var(--ifm-navbar-sidebar-width));
    }

.navbar-sidebar__back {
      background: var(--ifm-menu-color-background-active);
      font-size: 15px;
      font-weight: var(--ifm-button-font-weight);
      margin: 0 0 0.2rem -0.5rem;
      padding: 0.6rem 1.5rem;
      position: relative;
      text-align: left;
      top: -0.5rem;
      width: calc(100% + 1rem);
    }

.navbar-sidebar__close {
      display: flex;
      margin-left: auto;
    }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.pagination {
  column-gap: var(--ifm-pagination-page-spacing);
  display: flex;
  font-size: var(--ifm-pagination-font-size);
  padding-left: 0;
}

.pagination--sm {
    --ifm-pagination-font-size: 0.8rem;
    --ifm-pagination-padding-horizontal: 0.8rem;
    --ifm-pagination-padding-vertical: 0.2rem;
  }

.pagination--lg {
    --ifm-pagination-font-size: 1.2rem;
    --ifm-pagination-padding-horizontal: 1.2rem;
    --ifm-pagination-padding-vertical: 0.3rem;
  }

.pagination__item {
    display: inline-flex;
  }

.pagination__item > span {
      padding: var(--ifm-pagination-padding-vertical);
    }

.pagination__item--active .pagination__link {
        background: var(--ifm-pagination-item-active-background);
        color: var(--ifm-pagination-color-active);
      }

.pagination__item:not(.pagination__item--active):hover .pagination__link {
        background: var(--ifm-pagination-item-active-background);
      }

.pagination__item--disabled,
    .pagination__item[disabled] {
      opacity: 0.25;
      pointer-events: none;
    }

.pagination__link {
    border-radius: var(--ifm-pagination-border-radius);
    color: var(--ifm-font-color-base);
    display: inline-block;
    padding: var(--ifm-pagination-padding-vertical)
      var(--ifm-pagination-padding-horizontal);
    transition: background var(--ifm-transition-fast) var(--ifm-transition-timing-default);
  }

.pagination__link:hover {
      -webkit-text-decoration: none;
      text-decoration: none;
    }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.pagination-nav {
  display: grid;
  grid-gap: var(--ifm-spacing-horizontal);
  gap: var(--ifm-spacing-horizontal);
  grid-template-columns: repeat(2, 1fr);
}

.pagination-nav__link {
    border: 1px solid var(--ifm-color-emphasis-300);
    border-radius: var(--ifm-pagination-nav-border-radius);
    display: block;
    height: 100%;
    line-height: var(--ifm-heading-line-height);
    padding: var(--ifm-global-spacing);
    transition: border-color var(--ifm-transition-fast) var(--ifm-transition-timing-default);
  }

.pagination-nav__link:hover {
      border-color: var(--ifm-pagination-nav-color-hover);
      -webkit-text-decoration: none;
      text-decoration: none;
    }

.pagination-nav__link--next {
      grid-column: 2/3;
      text-align: right;
    }

.pagination-nav__label {
    font-size: var(--ifm-h4-font-size);
    font-weight: var(--ifm-heading-font-weight);
    word-break: break-word;
  }

.pagination-nav__link--prev .pagination-nav__label::before {
      content: '« ';
    }

.pagination-nav__link--next .pagination-nav__label::after {
      content: ' »';
    }

.pagination-nav__sublabel {
    color: var(--ifm-color-content-secondary);
    font-size: var(--ifm-h5-font-size);
    font-weight: var(--ifm-font-weight-semibold);
    margin-bottom: 0.25rem;
  }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.pills {
  display: flex;
  gap: var(--ifm-pills-spacing);
  padding-left: 0;
}

.pills__item {
    border-radius: 0.5rem;
    cursor: pointer;
    display: inline-block;
    font-weight: var(--ifm-font-weight-bold);
    padding: 0.25rem 1rem;
    transition: background var(--ifm-transition-fast) var(--ifm-transition-timing-default);
  }

.pills__item--active {
      background: var(--ifm-pills-color-background-active);
      color: var(--ifm-pills-color-active);
    }

.pills__item:not(.pills__item--active):hover {
      background: var(--ifm-pills-color-background-active);
    }

.pills--block {
    justify-content: stretch;
  }

.pills--block .pills__item {
      flex-grow: 1;
      text-align: center;
    }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.tabs {
  color: var(--ifm-tabs-color);
  display: flex;
  font-weight: var(--ifm-font-weight-bold);
  margin-bottom: 0;
  overflow-x: auto;
  padding-left: 0;
}

.tabs__item {
    border-bottom: 3px solid transparent;
    border-radius: var(--ifm-global-radius);
    cursor: pointer;
    display: inline-flex;
    padding: var(--ifm-tabs-padding-vertical) var(--ifm-tabs-padding-horizontal);
    transition: background-color var(--ifm-transition-fast) var(--ifm-transition-timing-default);
  }

.tabs__item--active {
      border-bottom-color: var(--ifm-tabs-color-active-border);
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;
      color: var(--ifm-tabs-color-active);
    }

.tabs__item:hover {
      background-color: var(--ifm-hover-overlay);
    }

.tabs--block {
    justify-content: stretch;
  }

.tabs--block .tabs__item {
      flex-grow: 1;
      justify-content: center;
    }

/* Mode */

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

html[data-theme='dark'] {
  --ifm-color-scheme: dark;

  --ifm-color-emphasis-0: var(--ifm-color-gray-1000);
  --ifm-color-emphasis-100: var(--ifm-color-gray-900);
  --ifm-color-emphasis-200: var(--ifm-color-gray-800);
  --ifm-color-emphasis-300: var(--ifm-color-gray-700);
  --ifm-color-emphasis-400: var(--ifm-color-gray-600);
  --ifm-color-emphasis-500: var(--ifm-color-gray-500);
  --ifm-color-emphasis-600: var(--ifm-color-gray-400);
  --ifm-color-emphasis-700: var(--ifm-color-gray-300);
  --ifm-color-emphasis-800: var(--ifm-color-gray-200);
  --ifm-color-emphasis-900: var(--ifm-color-gray-100);
  --ifm-color-emphasis-1000: var(--ifm-color-gray-0);

  --ifm-background-color: #1b1b1d;
  --ifm-background-surface-color: #242526;

  --ifm-hover-overlay: rgba(255, 255, 255, 0.05);

  --ifm-color-content: #e3e3e3;
  --ifm-color-content-secondary: rgba(255, 255, 255, 1);

  --ifm-breadcrumb-separator-filter: invert(64%) sepia(11%) saturate(0%)
    hue-rotate(149deg) brightness(99%) contrast(95%);

  --ifm-code-background: rgba(255, 255, 255, 0.1);

  --ifm-scrollbar-track-background-color: #444444;
  --ifm-scrollbar-thumb-background-color: #686868;
  --ifm-scrollbar-thumb-hover-background-color: #7a7a7a;

  --ifm-table-stripe-background: rgba(255, 255, 255, 0.07);

  --ifm-toc-border-color: var(--ifm-color-emphasis-200);
    --ifm-color-primary-contrast-background: rgb(16, 36, 69);
    --ifm-color-primary-contrast-foreground: rgb(235, 242, 252);
    --ifm-color-secondary-contrast-background: rgb(71, 71, 72);
    --ifm-color-secondary-contrast-foreground: rgb(253, 253, 254);
    --ifm-color-success-contrast-background: rgb(0, 49, 0);
    --ifm-color-success-contrast-foreground: rgb(230, 246, 230);
    --ifm-color-info-contrast-background: rgb(25, 60, 71);
    --ifm-color-info-contrast-foreground: rgb(238, 249, 253);
    --ifm-color-warning-contrast-background: rgb(77, 56, 0);
    --ifm-color-warning-contrast-foreground: rgb(255, 248, 230);
    --ifm-color-danger-contrast-background: rgb(75, 17, 19);
    --ifm-color-danger-contrast-foreground: rgb(255, 235, 236)
}

@media (min-width: 1440px) {
    .container {
      max-width: var(--ifm-container-width-xl);
    }
}

@media (max-width: 996px) {
    .col {
      --ifm-col-width: 100%;
      flex-basis: var(--ifm-col-width);
      margin-left: 0;
    }

.footer {
    --ifm-footer-padding-horizontal: 0
}

    .footer__link-separator {
      display: none;
    }

    .footer__col {
      margin-bottom: calc(var(--ifm-spacing-vertical) * 3);
    }

    .footer__link-item {
      display: block;
      width: max-content;
    }

.hero {
    padding-left: 0;
    padding-right: 0
}

.navbar > .container,
  .navbar > .container-fluid {
      padding: 0
  }

.navbar__toggle {
      display: inherit
  }

.navbar__item {
      display: none
  }

.navbar__search-input {
        width: 9rem
    }

.pills--block {
      flex-direction: column
  }

.tabs--block {
      flex-direction: column
  }
}

@media (max-width: 576px) {
    .markdown h1:first-child {
      --ifm-h1-font-size: 2rem;
    }
    .markdown > h2 {
      --ifm-h2-font-size: 1.5rem;
    }
    .markdown > h3 {
      --ifm-h3-font-size: 1.25rem;
    }
}

@media (pointer: fine) {
  .thin-scrollbar {
    scrollbar-width: thin;
  }
  .thin-scrollbar::-webkit-scrollbar {
    height: var(--ifm-scrollbar-size);
    width: var(--ifm-scrollbar-size);
  }
  .thin-scrollbar::-webkit-scrollbar-track {
    background: var(--ifm-scrollbar-track-background-color);
    border-radius: 10px;
  }
  .thin-scrollbar::-webkit-scrollbar-thumb {
    background: var(--ifm-scrollbar-thumb-background-color);
    border-radius: 10px;
  }
  .thin-scrollbar::-webkit-scrollbar-thumb:hover {
    background: var(--ifm-scrollbar-thumb-hover-background-color);
  }
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --ifm-transition-fast: 0ms;
    --ifm-transition-slow: 0ms;
  }
}

@media print {

.table-of-contents {
    display: none
}

.footer {
    display: none
}

.menu {
    display: none
}

.navbar {
    display: none
}

.pagination-nav {
    display: none
}

.tabs {
    page-break-inside: avoid
}
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

/**
 * Styles for NProgress
 * Copied over to remove unused styles for the spinner.
 * https://github.com/rstacruz/nprogress/blob/master/nprogress.css
 */

:root {
  --docusaurus-progress-bar-color: var(--ifm-color-primary);
}

#nprogress {
  pointer-events: none;
}

#nprogress .bar {
  background: var(--docusaurus-progress-bar-color);
  position: fixed;
  z-index: 1031;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
}

#nprogress .peg {
  position: absolute;
  right: 0;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px var(--docusaurus-progress-bar-color),
    0 0 5px var(--docusaurus-progress-bar-color);
  opacity: 1;
  transform: rotate(3deg) translate(0, -4px);
}

/**
 * Sun & Moon Cycles - Custom Theme Styles
 * Dual theme system: Apex Predator (Dark) and Celestial Harmony (Light)
 */

/* Import fonts for elegant typography */

/* ============================================
   THEME 1: APEX PREDATOR (Dark/Default Theme)
   Colors: Deep Black, Intense Red, Metallic Silver, Blood Red
   ============================================ */
:root {
  /* Primary Colors - Intense Red for Sun energy */
  --ifm-color-primary: #FF0000;
  --ifm-color-primary-dark: #e60000;
  --ifm-color-primary-darker: #d90000;
  --ifm-color-primary-darkest: #b30000;
  --ifm-color-primary-light: #ff1a1a;
  --ifm-color-primary-lighter: #ff3333;
  --ifm-color-primary-lightest: #ff4d4d;

  /* Background and surfaces */
  --ifm-background-color: #1a1a1a;
  --ifm-background-surface-color: #000000;

  /* Text colors */
  --ifm-font-color-base: #C0C0C0;
  --ifm-heading-color: #C0C0C0;

  /* Navbar */
  --ifm-navbar-background-color: #000000;
  --ifm-navbar-shadow: 0 4px 8px rgba(255, 0, 0, 0.3);

  /* Footer */
  --ifm-footer-background-color: #000000;

  /* Cards and containers */
  --ifm-card-background-color: rgba(54, 69, 79, 0.3);

  /* Code blocks */
  --ifm-code-font-size: 95%;
  --docusaurus-highlighted-code-line-bg: rgba(255, 0, 0, 0.1);

  /* Custom variables */
  --custom-accent-red: #880808;
  --custom-charcoal: #36454F;
  --custom-silver: #C0C0C0;

  /* Typography */
  --ifm-font-family-base: 'Cormorant Garamond', serif;
  --ifm-heading-font-family: 'Cinzel', serif;
  --ifm-font-size-base: 18px;
  --ifm-line-height-base: 1.8;
}

/* ============================================
   THEME 2: CELESTIAL HARMONY (Light Theme)
   Colors: Warm Gold, Soft Amber, Cool Blues, Ethereal Purples
   ============================================ */
[data-theme='light'] {
  /* Primary Colors - Warm Gold for Sun */
  --ifm-color-primary: #D4AF37;
  --ifm-color-primary-dark: #c09d2f;
  --ifm-color-primary-darker: #b5942c;
  --ifm-color-primary-darkest: #967a24;
  --ifm-color-primary-light: #dcc155;
  --ifm-color-primary-lighter: #e0c866;
  --ifm-color-primary-lightest: #ead788;

  /* Background and surfaces - Soft creams and whites */
  --ifm-background-color: #FFF8E7;
  --ifm-background-surface-color: #FFFEF9;

  /* Text colors - Deep warm tones */
  --ifm-font-color-base: #3E2723;
  --ifm-heading-color: #5D4037;

  /* Navbar - Soft gradient effect */
  --ifm-navbar-background-color: #FFFBF0;
  --ifm-navbar-shadow: 0 4px 8px rgba(212, 175, 55, 0.2);

  /* Footer */
  --ifm-footer-background-color: #F5E6D3;
  --ifm-footer-color: #3E2723;

  /* Cards and containers */
  --ifm-card-background-color: rgba(255, 255, 255, 0.8);

  /* Code blocks */
  --docusaurus-highlighted-code-line-bg: rgba(212, 175, 55, 0.1);

  /* Custom variables for light theme */
  --custom-accent-gold: #D4AF37;
  --custom-moon-blue: #7B8FA3;
  --custom-dawn-pink: #FFE4E1;
}

/* ============================================
   GLOBAL STYLES
   ============================================ */

body {
  font-family: var(--ifm-font-family-base);
  letter-spacing: 0.3px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ifm-heading-font-family);
  font-weight: 600;
  letter-spacing: 1px;
}

/* Navbar enhancements with brushed steel texture */
.navbar {
  background-color: var(--ifm-navbar-background-color);
  border-bottom: 2px solid var(--ifm-color-primary);
  position: sticky;
  top: 0;
  overflow: visible;
  /* Remove backdrop-filter to fix dropdown visibility */
  backdrop-filter: none;
  /* Set navbar z-index higher to stay above content */
  z-index: 1000;
}

/* No overlay needed for now */

.navbar__inner,
.navbar__title,
.navbar__link,
.navbar__toggle {
  position: relative;
  z-index: 1;
}

/* Reset all dropdown styles to default Docusaurus behavior */
.navbar__item.dropdown {
  overflow: visible;
  position: relative;
  /* Ensure dropdown container has higher z-index */
  z-index: 200;
}

/* Ensure dropdown container doesn't clip content */
.navbar__inner {
  overflow: visible;
}

/* Force dropdown to appear above navbar */
.dropdown__menu {
  z-index: 9999 !important;
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  right: auto !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(-10px) !important;
  /* Add margin to ensure it's not hidden */
  margin-top: 5px !important;
  /* Prevent text truncation */
  min-width: 220px !important;
  white-space: nowrap !important;
  /* Add border and background for visibility */
  border: 1px solid var(--ifm-color-primary) !important;
  background-color: var(--ifm-background-surface-color) !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
  /* Add smooth transition */
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease !important;
}

/* Specific fix for locale dropdown — anchor right to avoid viewport overflow */
.navbar__item.dropdown .dropdown__menu {
  z-index: 10000 !important;
}
.navbar__items--right .navbar__item.dropdown .dropdown__menu {
  left: auto !important;
  right: 0 !important;
}

/* Ensure dropdown links are visible */
.dropdown__link {
  color: var(--ifm-font-color-base) !important;
  padding: 8px 16px !important;
  display: block !important;
}

.dropdown__link:hover {
  background-color: var(--ifm-color-primary) !important;
  color: white !important;
}

/* Fix dropdown positioning issue - only show when active with smooth transition */
.navbar__item.dropdown:hover .dropdown__menu {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

/* Keep dropdown open when hovering over dropdown menu itself */
.dropdown__menu:hover {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

/* Prevent dropdown from closing when moving mouse to select option */
.navbar__item.dropdown .dropdown__menu:hover .dropdown__link {
  opacity: 1 !important;
  visibility: visible !important;
}

.navbar__item.dropdown .dropdown__menu .dropdown__link:hover {
  background-color: var(--ifm-color-primary) !important;
  color: white !important;
}

/* Fix dropdown closing issue - keep menu open when hovering over menu items */
.navbar__item.dropdown .dropdown__menu {
  pointer-events: auto !important;
}

.navbar__item.dropdown .dropdown__menu .dropdown__link {
  pointer-events: auto !important;
}

/* Ensure dropdown stays open when clicking on menu items */
.navbar__item.dropdown .dropdown__menu .dropdown__link:active {
  background-color: var(--ifm-color-primary) !important;
  color: white !important;
  pointer-events: auto !important;
}

.navbar__title {
  font-family: var(--ifm-heading-font-family);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 3px;
}

.navbar__logo {
  height: 50px;
  width: auto;
}

.navbar__link:hover {
  color: var(--ifm-color-primary) !important;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

/* Hero section styling */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--ifm-background-surface-color) 0%, var(--ifm-background-color) 100%);
  padding: 4rem 0;
  overflow: hidden;
}

[data-theme='dark'] .hero {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(26, 26, 26, 0.95) 100%);
}

[data-theme='light'] .hero {
  background: linear-gradient(135deg, #FFF8E7 0%, #FFE4B5 100%);
}

.hero__title {
  font-size: 3.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
  font-size: 1.5rem;
  font-style: italic;
  opacity: 0.9;
}

/* Card styling */
.card {
  background: var(--ifm-card-background-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 1rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(10px);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(255, 0, 0, 0.25);
}

[data-theme='light'] .card:hover {
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

/* Footer styling with red leather texture */
.footer {
  background-color: #2a0a0a;
  padding: 3rem 0;
  border-top: 2px solid var(--ifm-color-primary);
  position: relative;
  overflow: hidden;
}

.footer > * {
  position: relative;
  z-index: 1;
}

[data-theme='light'] .footer {
  background-image: none;
  background-color: var(--ifm-footer-background-color);
}

.footer__title {
  color: var(--ifm-color-primary);
  font-family: var(--ifm-heading-font-family);
  font-weight: 600;
  letter-spacing: 1.5px;
}

.footer__link-item:hover {
  color: var(--ifm-color-primary) !important;
  -webkit-text-decoration: underline;
  text-decoration: underline;
  text-shadow: 0 0 8px rgba(255, 0, 0, 0.6);
}

/* Documentation content styling */
.markdown h1 {
  border-bottom: 3px solid var(--ifm-color-primary);
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
}

.markdown h2 {
  color: var(--ifm-color-primary);
  margin-top: 2rem;
}

/* Sidebar styling */
.menu {
  background-color: #1a1a1a;
}

.menu__link {
  border-radius: 8px;
  transition: all 0.2s ease;
  color: var(--custom-silver);
}

.menu__link:hover {
  background: var(--ifm-color-primary);
  color: white;
}

.menu__link--active {
  background-color: rgba(255, 0, 0, 0.15);
  color: var(--ifm-color-primary);
  border-left: 3px solid var(--ifm-color-primary);
}

/* Button styling */
.button {
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.button--primary {
  background: linear-gradient(135deg, #880808 0%, #FF0000 100%);
  border: 2px solid var(--ifm-color-primary);
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(255, 0, 0, 0.3);
}

.button--primary:hover {
  background: transparent;
  color: var(--ifm-color-primary);
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(255, 0, 0, 0.5);
}

/* Theme toggle button enhancement */
[data-theme='dark'] .navbar__toggle {
  color: var(--custom-silver);
}

[data-theme='light'] .navbar__toggle {
  color: var(--custom-accent-gold);
}

/* Decorative elements */
.decorative-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ifm-color-primary), transparent);
  margin: 3rem 0;
}

/* Expertise cards */
.expertise-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.expertise-card {
  background: var(--ifm-card-background-color);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--ifm-color-primary);
  border: 1px solid var(--ifm-color-primary);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Removed texture overlay to fix build */

.expertise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px var(--ifm-color-primary);
  border-left-color: var(--ifm-color-primary-dark);
}

/* Table styling */
table {
  display: table;
  width: initial;
  margin: 0 auto;
}

/* Markdown image styling */
.markdown img[alt="Ma Photo"] {
  width: 500px;
  height: auto;
  display: block;
  margin: 20px auto;
}

/* Pagination */
.pagination-nav__link {
  border: 1px solid var(--custom-charcoal);
  background-color: #1a1a1a;
  transition: all 0.3s ease;
}

.pagination-nav__link:hover {
  border-color: var(--ifm-color-primary);
  background-color: rgba(255, 0, 0, 0.1);
}

/* Table of contents */
.table-of-contents__link {
  color: var(--custom-silver);
  transition: color 0.2s ease;
}

.table-of-contents__link:hover,
.table-of-contents__link--active {
  color: var(--ifm-color-primary);
}

/* Code blocks */
pre {
  background-color: var(--custom-charcoal) !important;
  border: 1px solid var(--custom-charcoal);
}

[data-theme='light'] pre {
  background-color: #F5F5F5 !important;
  border: 1px solid #D0D0D0 !important;
  color: #2c3e50 !important;
}

[data-theme='light'] pre code {
  color: #2c3e50 !important;
  background-color: transparent !important;
}

/* Font face for Kaala Glyph */
@font-face {
  font-family: "Kaala Glyph";
  src: local("KaalaGlyph.ttf"),
   url(/assets/fonts/KaalaGlyph-a14a5a05daa001d0393b53c1f63cc268.ttf) format("truetype");
}

/* Purple text utility */
.purple-text {
  color: rebeccapurple;
}

/* ============================================
   NAVBAR: "Nouveau Zodiac" Calculator Highlight
   Glowing gold effect to draw attention to the calculator
   ============================================ */

/* Desktop navbar link — white bold text + animated red underline */
.navbar__link--calculator {
  color: #fff !important;
  font-weight: 700 !important;
  position: relative;
}

.navbar__link--calculator::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #FF0000, #ff4444, #FF0000);
  border-radius: 2px;
  animation: calculator-underline 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(255, 0, 0, 0.5);
}

@keyframes calculator-underline {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px rgba(255, 0, 0, 0.5); }
  50% { opacity: 0.6; box-shadow: 0 0 12px rgba(255, 0, 0, 0.8); }
}

.navbar__link--calculator:hover {
  color: var(--ifm-color-primary) !important;
}

/* Light theme: dark bold text + gold underline */
[data-theme='light'] .navbar__link--calculator {
  color: #2a1500 !important;
}

[data-theme='light'] .navbar__link--calculator::after {
  background: linear-gradient(90deg, #D4AF37, #e8c47a, #D4AF37);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

/* Mobile sidebar: highlight the calculator link with underline */
.navbar-sidebar .navbar__link--calculator {
  color: #fff !important;
  font-weight: 700 !important;
  -webkit-text-decoration: underline !important;
  text-decoration: underline !important;
  text-decoration-color: #FF0000 !important;
  text-decoration-thickness: 3px !important;
  text-underline-offset: 4px !important;
}

/* No animated pseudo-element underline in mobile sidebar */
.navbar-sidebar .navbar__link--calculator::after {
  display: none;
}

/* Hide main navbar content when sidebar is open (prevents double logo + unblocks sidebar toggle) */
.navbar-sidebar--show .navbar__inner {
  visibility: hidden;
  pointer-events: none;
}

/* Sidebar menu: highlight "Le Zodiaque Solaire" link with underline */
.menu__link[href*="nouveau-zodiac"] {
  font-weight: 700 !important;
  -webkit-text-decoration: underline !important;
  text-decoration: underline !important;
  text-decoration-color: #FF0000 !important;
  text-decoration-thickness: 3px !important;
  text-underline-offset: 4px !important;
}

[data-theme='light'] .menu__link[href*="nouveau-zodiac"] {
  font-weight: 700 !important;
  -webkit-text-decoration: underline !important;
  text-decoration: underline !important;
  text-decoration-color: #D4AF37 !important;
  text-decoration-thickness: 3px !important;
  text-underline-offset: 4px !important;
}

/* ============================================
   MOBILE NAVBAR FIXES
   ============================================ */

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero__title {
    font-size: 2.5rem;
  }

  .hero__subtitle {
    font-size: 1.2rem;
  }

  .navbar__title {
    font-size: 1.2rem;
  }

  .expertise-container {
    grid-template-columns: 1fr;
  }

  /* Mobile sidebar: ensure full width and readable text */
  .navbar-sidebar .navbar__link {
    padding: 12px 16px;
    font-size: 16px;
  }

  /* Mobile sidebar calculator link — handled by non-media-query rule above */

  /* Fix double logo: hide title text on mobile, keep only logo image */
  .navbar__title {
    display: none;
  }

  /* Shrink login button on mobile to avoid crowding the navbar */
  .navbar__items--right > :last-child button {
    padding: 6px 12px !important;
    font-size: 12px !important;
  }
}

/* Tablet: compress navbar items to avoid overflow */
@media (min-width: 997px) and (max-width: 1200px) {
  .navbar__link {
    font-size: 13px !important;
    padding: 4px 8px !important;
  }

  .navbar__title {
    font-size: 1rem;
  }
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: var(--ifm-background-color);
}

::-webkit-scrollbar-thumb {
  background: var(--ifm-color-primary);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--ifm-color-primary-dark);
}

/* Smooth transitions for theme switching — scoped to key elements only */
body,
.navbar,
.footer,
.main-wrapper {
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* ============================================
   PISCES BLIND ANALYSIS — Ancient Gate Theme
   Scoped to /docs/aditya-zodiac/dhata/ pages
   ============================================ */

/* --- Quote blocks: blue-to-orange gradient left border --- */
[class*="docItemContainer"] blockquote {
  border-left: 4px solid transparent;
  border-image: linear-gradient(
    to bottom,
    #1E90FF 0%,
    #0a3d6b 30%,
    #4a2c0a 70%,
    #ff6a00 100%
  ) 1;
  background: linear-gradient(
    90deg,
    rgba(30, 144, 255, 0.05) 0%,
    transparent 40%
  );
  padding: 0.8rem 1.2rem;
}

/* --- Section divider image --- */
hr.blind-analysis-divider {
  width: 100%;
  height: 60px;
  border: none;
  background-image: url(/assets/images/divider_fire_water-9efa6212e54127efab0c165bbbe25a07.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 2rem 0;
  opacity: 0.85;
}

/* --- Fire analysis card styling (dark theme default) --- */
.fire-analysis {
  background-image: url(data:image/webp;base64,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);
  background-size: cover;
  background-position: center;
  border-left: 3px solid #ff6a00;
  border-radius: 8px;
  padding: 1.2rem 1.5rem;
  margin: 1rem 0;
  color: #fff;
}

/* --- Water analysis card styling (dark theme default) --- */
.water-analysis {
  background-image: url(data:image/webp;base64,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);
  background-size: cover;
  background-position: center;
  border-left: 3px solid #1E90FF;
  border-radius: 8px;
  padding: 1.2rem 1.5rem;
  margin: 1rem 0;
  color: #fff;
}

/* --- Light theme: lighter card backgrounds with text-readable overlay --- */
[data-theme='light'] .fire-analysis {
  background-image: url(/assets/images/card_bg_fire_light-df817449ffe84029f894dda48d87b6e8.webp);
  background-color: rgba(255, 248, 240, 0.85);
  background-blend-mode: lighten;
  color: #2a1500;
  border-left-color: #cc5500;
}

[data-theme='light'] .water-analysis {
  background-image: url(/assets/images/card_bg_water_light-0fb80d96941ee1c6c51c5753e94cfcd2.webp);
  background-color: rgba(240, 248, 255, 0.85);
  background-blend-mode: lighten;
  color: #001a33;
  border-left-color: #1565C0;
}

/* --- Actor header banner --- */
.actor-banner {
  background-image: url(/assets/images/banner_actor_stone-d87f8fc28b5fdef5304544675fdd28c0.webp);
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  padding: 0.8rem 1.5rem;
  margin: 2rem 0 1rem 0;
}

/* --- Fire/Water score bar --- */
.score-bar {
  display: flex;
  height: 48px;
  border-radius: 6px;
  overflow: hidden;
  margin: 0.8rem 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--ifm-heading-font-family);
  font-weight: 600;
  font-size: 0.95rem;
}

.score-bar__fire {
  background: linear-gradient(90deg, #8B2500 0%, #ff4500 60%, #ff6a00 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  position: relative;
}

.score-bar__fire::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 8px;
  background: linear-gradient(90deg, transparent, rgba(255, 200, 50, 0.4));
}

.score-bar__water {
  background: linear-gradient(90deg, #0a3d6b 0%, #1565C0 40%, #1E90FF 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  position: relative;
}

.score-bar__water::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 8px;
  background: linear-gradient(270deg, transparent, rgba(100, 200, 255, 0.3));
}

/* Dominant indicator glow */
.score-bar__fire--dominant {
  box-shadow: inset 0 0 20px rgba(255, 100, 0, 0.3);
}

.score-bar__water--dominant {
  box-shadow: inset 0 0 20px rgba(30, 144, 255, 0.3);
}

/* --- Page background texture --- */
.blind-analysis-bg {
  background-image: url(data:image/webp;base64,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);
  background-repeat: repeat;
  background-size: 512px 512px;
}

/* ============================================
   THEMED TABLES — Ancient Gate Fire/Water
   ============================================ */

/* --- Executive Summary Table --- */
.executive-summary-table table {
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 106, 0, 0.3);
  box-shadow: 0 0 20px rgba(255, 80, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.executive-summary-table thead tr {
  background: linear-gradient(90deg, #1a0800 0%, #2d1200 40%, #0a1a2d 100%);
}

.executive-summary-table thead th {
  color: #e8c47a;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 14px 18px;
  border-bottom: 2px solid rgba(255, 106, 0, 0.4);
}

.executive-summary-table tbody tr {
  transition: background 0.2s ease;
}

/* Fire rows — warm glow */
.executive-summary-table tbody tr:nth-child(1),
.executive-summary-table tbody tr:nth-child(3),
.executive-summary-table tbody tr:nth-child(4) {
  background: linear-gradient(90deg, rgba(139, 37, 0, 0.15) 0%, rgba(255, 69, 0, 0.08) 50%, transparent 100%);
  border-left: 3px solid #ff6a00;
}

.executive-summary-table tbody tr:nth-child(1):hover,
.executive-summary-table tbody tr:nth-child(3):hover,
.executive-summary-table tbody tr:nth-child(4):hover {
  background: linear-gradient(90deg, rgba(139, 37, 0, 0.25) 0%, rgba(255, 69, 0, 0.12) 50%, transparent 100%);
}

/* Water rows — cool glow */
.executive-summary-table tbody tr:nth-child(2),
.executive-summary-table tbody tr:nth-child(5) {
  background: linear-gradient(90deg, rgba(10, 61, 107, 0.15) 0%, rgba(30, 144, 255, 0.08) 50%, transparent 100%);
  border-left: 3px solid #1E90FF;
}

.executive-summary-table tbody tr:nth-child(2):hover,
.executive-summary-table tbody tr:nth-child(5):hover {
  background: linear-gradient(90deg, rgba(10, 61, 107, 0.25) 0%, rgba(30, 144, 255, 0.12) 50%, transparent 100%);
}

/* Baseline row — neutral */
.executive-summary-table tbody tr:nth-child(6) {
  background: rgba(128, 128, 128, 0.08);
  border-left: 3px solid #666;
  opacity: 0.7;
}

.executive-summary-table td {
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* --- Career Pattern Distribution Table --- */
.career-pattern-table table {
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 106, 0, 0.25);
  box-shadow: 0 0 20px rgba(255, 80, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.career-pattern-table thead tr {
  background: linear-gradient(90deg, #1a0800 0%, #2d1200 40%, #0a1a2d 100%);
}

.career-pattern-table thead th {
  color: #e8c47a;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 14px 18px;
  border-bottom: 2px solid rgba(255, 106, 0, 0.4);
}

/* 3/3 Fire — strongest fire */
.career-pattern-table tbody tr:nth-child(1) {
  background: linear-gradient(90deg, rgba(200, 50, 0, 0.2) 0%, rgba(255, 69, 0, 0.1) 60%, transparent 100%);
  border-left: 4px solid #ff4500;
}

/* 2/3 Fire — moderate fire */
.career-pattern-table tbody tr:nth-child(2) {
  background: linear-gradient(90deg, rgba(180, 80, 20, 0.12) 0%, rgba(255, 120, 30, 0.06) 60%, transparent 100%);
  border-left: 4px solid #e8873a;
}

/* 1/3 Fire — fading toward water */
.career-pattern-table tbody tr:nth-child(3) {
  background: linear-gradient(90deg, rgba(80, 80, 120, 0.1) 0%, rgba(100, 140, 180, 0.05) 60%, transparent 100%);
  border-left: 4px solid #8899aa;
}

/* 0/3 Fire — pure water */
.career-pattern-table tbody tr:nth-child(4) {
  background: linear-gradient(90deg, rgba(10, 61, 107, 0.18) 0%, rgba(30, 144, 255, 0.08) 60%, transparent 100%);
  border-left: 4px solid #1E90FF;
}

.career-pattern-table tbody tr:hover {
  filter: brightness(1.2);
}

.career-pattern-table td {
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Pattern column — badge styling */
.career-pattern-table td:first-child {
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
}

/* --- Fire-Majority vs Water-Majority Table --- */
.fire-water-majority-table table {
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 106, 0, 0.25);
  box-shadow: 0 0 16px rgba(255, 80, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.fire-water-majority-table thead tr {
  background: linear-gradient(90deg, #1a0800 0%, #2d1200 40%, #0a1a2d 100%);
}

.fire-water-majority-table thead th {
  color: #e8c47a;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 14px 18px;
  border-bottom: 2px solid rgba(255, 106, 0, 0.4);
}

.fire-water-majority-table tbody tr:nth-child(1) {
  background: linear-gradient(90deg, rgba(200, 50, 0, 0.2) 0%, rgba(255, 69, 0, 0.1) 60%, transparent 100%);
  border-left: 4px solid #ff4500;
}

.fire-water-majority-table tbody tr:nth-child(2) {
  background: linear-gradient(90deg, rgba(10, 61, 107, 0.18) 0%, rgba(30, 144, 255, 0.08) 60%, transparent 100%);
  border-left: 4px solid #1E90FF;
}

.fire-water-majority-table td {
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* --- Neutral Themed Table (gold headers, no fire/water row colors) --- */
.ancient-gate-table table {
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(200, 160, 80, 0.25);
  box-shadow: 0 0 16px rgba(200, 160, 80, 0.06), 0 4px 12px rgba(0, 0, 0, 0.25);
}

.ancient-gate-table thead tr {
  background: linear-gradient(90deg, #1a1208 0%, #2d1e0a 40%, #1a1208 100%);
}

.ancient-gate-table thead th {
  color: #e8c47a;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 14px 18px;
  border-bottom: 2px solid rgba(232, 196, 122, 0.3);
}

.ancient-gate-table tbody tr {
  transition: background 0.2s ease;
}

.ancient-gate-table tbody tr:hover {
  background: rgba(232, 196, 122, 0.06);
}

.ancient-gate-table td {
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* --- Baseline Comparison Table (fire/water alternating rows) --- */
.baseline-comparison-table table {
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(200, 160, 80, 0.25);
  box-shadow: 0 0 16px rgba(200, 160, 80, 0.06), 0 4px 12px rgba(0, 0, 0, 0.25);
}

.baseline-comparison-table thead tr {
  background: linear-gradient(90deg, #1a0800 0%, #2d1200 40%, #0a1a2d 100%);
}

.baseline-comparison-table thead th {
  color: #e8c47a;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 14px 18px;
  border-bottom: 2px solid rgba(232, 196, 122, 0.3);
}

.baseline-comparison-table tbody tr { transition: background 0.2s ease; }

/* Row 1: Fire roles, Row 3: 3/3 Fire, Row 5: Fire-majority = fire accent */
.baseline-comparison-table tbody tr:nth-child(1),
.baseline-comparison-table tbody tr:nth-child(3),
.baseline-comparison-table tbody tr:nth-child(5) {
  background: linear-gradient(90deg, rgba(139, 37, 0, 0.15) 0%, rgba(255, 69, 0, 0.08) 50%, transparent 100%);
  border-left: 3px solid #ff6a00;
}

.baseline-comparison-table tbody tr:nth-child(1):hover,
.baseline-comparison-table tbody tr:nth-child(3):hover,
.baseline-comparison-table tbody tr:nth-child(5):hover {
  background: linear-gradient(90deg, rgba(139, 37, 0, 0.25) 0%, rgba(255, 69, 0, 0.12) 50%, transparent 100%);
}

/* Row 2: Water roles, Row 4: 0/3 Fire (= all Water) = water accent */
.baseline-comparison-table tbody tr:nth-child(2),
.baseline-comparison-table tbody tr:nth-child(4) {
  background: linear-gradient(90deg, rgba(10, 61, 107, 0.15) 0%, rgba(30, 144, 255, 0.08) 50%, transparent 100%);
  border-left: 3px solid #1E90FF;
}

.baseline-comparison-table tbody tr:nth-child(2):hover,
.baseline-comparison-table tbody tr:nth-child(4):hover {
  background: linear-gradient(90deg, rgba(10, 61, 107, 0.25) 0%, rgba(30, 144, 255, 0.12) 50%, transparent 100%);
}

.baseline-comparison-table td {
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* --- Element Column Comparison Table (Fire/Water/Earth/Air columns) --- */
.element-comparison-table table {
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(200, 160, 80, 0.25);
  box-shadow: 0 0 16px rgba(200, 160, 80, 0.06), 0 4px 12px rgba(0, 0, 0, 0.25);
}

.element-comparison-table thead tr {
  background: linear-gradient(90deg, #1a0800 0%, #2d1200 50%, #0a1a2d 100%);
}

.element-comparison-table thead th {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 14px 18px;
  border-bottom: 2px solid rgba(232, 196, 122, 0.3);
}

/* Col 1: Data Source = gold */
.element-comparison-table thead th:nth-child(1) { color: #e8c47a; }
/* Col 2: Fire Dominant = fire red-orange */
.element-comparison-table thead th:nth-child(2) { color: #ff6a00; }
/* Col 3: Water Dominant = water blue */
.element-comparison-table thead th:nth-child(3) { color: #5dade2; }
/* Col 4: Earth Dominant = earth brown */
.element-comparison-table thead th:nth-child(4) { color: #c49a5c; }
/* Col 5: Air Dominant = air gold-yellow */
.element-comparison-table thead th:nth-child(5) { color: #D4AF37; }

.element-comparison-table tbody tr { transition: background 0.2s ease; }
.element-comparison-table tbody tr:hover { background: rgba(232, 196, 122, 0.06); }

/* Subtle column tints via cell backgrounds */
.element-comparison-table td:nth-child(2) {
  background: rgba(255, 69, 0, 0.06);
  border-left: 1px solid rgba(255, 106, 0, 0.15);
}
.element-comparison-table td:nth-child(3) {
  background: rgba(30, 144, 255, 0.06);
  border-left: 1px solid rgba(30, 144, 255, 0.15);
}
.element-comparison-table td:nth-child(4) {
  background: rgba(139, 69, 19, 0.06);
  border-left: 1px solid rgba(139, 69, 19, 0.15);
}
.element-comparison-table td:nth-child(5) {
  background: rgba(212, 175, 55, 0.06);
  border-left: 1px solid rgba(212, 175, 55, 0.15);
}

.element-comparison-table td {
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* --- Fire/Water Column Table (col 2=Fire, col 3=Water, col 4=Fire if present) --- */
.fire-water-columns-table table {
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(200, 160, 80, 0.25);
  box-shadow: 0 0 16px rgba(200, 160, 80, 0.06), 0 4px 12px rgba(0, 0, 0, 0.25);
}

.fire-water-columns-table thead tr {
  background: linear-gradient(90deg, #1a0800 0%, #2d1200 50%, #0a1a2d 100%);
}

.fire-water-columns-table thead th {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 14px 18px;
  border-bottom: 2px solid rgba(232, 196, 122, 0.3);
}

.fire-water-columns-table thead th:nth-child(1) { color: #e8c47a; }
.fire-water-columns-table thead th:nth-child(2) { color: #ff6a00; }
.fire-water-columns-table thead th:nth-child(3) { color: #5dade2; }
.fire-water-columns-table thead th:nth-child(4) { color: #ff6a00; }

.fire-water-columns-table tbody tr { transition: background 0.2s ease; }
.fire-water-columns-table tbody tr:hover { background: rgba(232, 196, 122, 0.06); }

.fire-water-columns-table td:nth-child(2) {
  background: rgba(255, 69, 0, 0.06);
  border-left: 1px solid rgba(255, 106, 0, 0.15);
}
.fire-water-columns-table td:nth-child(3) {
  background: rgba(30, 144, 255, 0.06);
  border-left: 1px solid rgba(30, 144, 255, 0.15);
}
.fire-water-columns-table td:nth-child(4) {
  background: rgba(255, 69, 0, 0.04);
  border-left: 1px solid rgba(255, 106, 0, 0.1);
}

.fire-water-columns-table td {
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

[data-theme='light'] .fire-water-columns-table thead th:nth-child(1) { color: #6b4c10; }
[data-theme='light'] .fire-water-columns-table thead th:nth-child(2) { color: #cc3300; }
[data-theme='light'] .fire-water-columns-table thead th:nth-child(3) { color: #1565C0; }
[data-theme='light'] .fire-water-columns-table thead th:nth-child(4) { color: #cc3300; }

[data-theme='light'] .fire-signal-table thead th { color: #cc3300; }
[data-theme='light'] .fire-signal-table table { border-color: rgba(200, 80, 0, 0.25); }
[data-theme='light'] .water-signal-table thead th { color: #1565C0; }
[data-theme='light'] .water-signal-table table { border-color: rgba(30, 100, 200, 0.25); }

/* --- Fire Signal Table (all rows fire-accented) --- */
.fire-signal-table table {
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 106, 0, 0.3);
  box-shadow: 0 0 20px rgba(255, 80, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.fire-signal-table thead tr {
  background: linear-gradient(90deg, #2d1200 0%, #1a0800 50%, #2d1200 100%);
}

.fire-signal-table thead th {
  color: #ff8c40;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 14px 18px;
  border-bottom: 2px solid rgba(255, 106, 0, 0.35);
}

.fire-signal-table tbody tr {
  background: linear-gradient(90deg, rgba(139, 37, 0, 0.12) 0%, rgba(255, 69, 0, 0.05) 50%, transparent 100%);
  border-left: 3px solid #ff6a00;
  transition: background 0.2s ease;
}

.fire-signal-table tbody tr:hover {
  background: linear-gradient(90deg, rgba(139, 37, 0, 0.22) 0%, rgba(255, 69, 0, 0.1) 50%, transparent 100%);
}

.fire-signal-table td {
  padding: 10px 18px;
  border-bottom: 1px solid rgba(255, 106, 0, 0.08);
}

.fire-signal-table td:first-child { font-weight: 700; }

/* --- Water Signal Table (all rows water-accented) --- */
.water-signal-table table {
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(30, 144, 255, 0.3);
  box-shadow: 0 0 20px rgba(30, 144, 255, 0.08), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.water-signal-table thead tr {
  background: linear-gradient(90deg, #0a1a2d 0%, #061222 50%, #0a1a2d 100%);
}

.water-signal-table thead th {
  color: #5dade2;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 14px 18px;
  border-bottom: 2px solid rgba(30, 144, 255, 0.35);
}

.water-signal-table tbody tr {
  background: linear-gradient(90deg, rgba(10, 61, 107, 0.12) 0%, rgba(30, 144, 255, 0.05) 50%, transparent 100%);
  border-left: 3px solid #1E90FF;
  transition: background 0.2s ease;
}

.water-signal-table tbody tr:hover {
  background: linear-gradient(90deg, rgba(10, 61, 107, 0.22) 0%, rgba(30, 144, 255, 0.1) 50%, transparent 100%);
}

.water-signal-table td {
  padding: 10px 18px;
  border-bottom: 1px solid rgba(30, 144, 255, 0.08);
}

.water-signal-table td:first-child { font-weight: 700; }

/* --- Light theme table overrides --- */
[data-theme='light'] .executive-summary-table thead tr,
[data-theme='light'] .career-pattern-table thead tr,
[data-theme='light'] .fire-water-majority-table thead tr,
[data-theme='light'] .ancient-gate-table thead tr,
[data-theme='light'] .baseline-comparison-table thead tr,
[data-theme='light'] .fire-water-columns-table thead tr,
[data-theme='light'] .fire-signal-table thead tr,
[data-theme='light'] .water-signal-table thead tr,
[data-theme='light'] .element-comparison-table thead tr {
  background: linear-gradient(90deg, #f5e6d0 0%, #f0d8b8 40%, #d8e8f5 100%);
}

[data-theme='light'] .executive-summary-table thead th,
[data-theme='light'] .career-pattern-table thead th,
[data-theme='light'] .fire-water-majority-table thead th,
[data-theme='light'] .ancient-gate-table thead th,
[data-theme='light'] .baseline-comparison-table thead th {
  color: #5a3a10;
  border-bottom-color: rgba(180, 100, 20, 0.4);
}

/* Element comparison: keep element-colored headers in light theme */
[data-theme='light'] .element-comparison-table thead th:nth-child(1) { color: #6b4c10; }
[data-theme='light'] .element-comparison-table thead th:nth-child(2) { color: #cc3300; }
[data-theme='light'] .element-comparison-table thead th:nth-child(3) { color: #1565C0; }
[data-theme='light'] .element-comparison-table thead th:nth-child(4) { color: #8B4513; }
[data-theme='light'] .element-comparison-table thead th:nth-child(5) { color: #9a7d1a; }

[data-theme='light'] .executive-summary-table table,
[data-theme='light'] .career-pattern-table table,
[data-theme='light'] .fire-water-majority-table table,
[data-theme='light'] .ancient-gate-table table,
[data-theme='light'] .baseline-comparison-table table,
[data-theme='light'] .fire-water-columns-table table,
[data-theme='light'] .fire-signal-table table,
[data-theme='light'] .water-signal-table table,
[data-theme='light'] .element-comparison-table table {
  border-color: rgba(180, 100, 20, 0.25);
  box-shadow: 0 0 16px rgba(180, 100, 20, 0.08), 0 4px 12px rgba(0, 0, 0, 0.1);
}

[data-theme='light'] .executive-summary-table td,
[data-theme='light'] .career-pattern-table td,
[data-theme='light'] .fire-water-majority-table td,
[data-theme='light'] .ancient-gate-table td,
[data-theme='light'] .baseline-comparison-table td,
[data-theme='light'] .fire-water-columns-table td,
[data-theme='light'] .fire-signal-table td,
[data-theme='light'] .water-signal-table td,
[data-theme='light'] .element-comparison-table td {
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

/* ============================================
   MASTER TABLE (39 Actors x 3 Roles)
   Fire/Water gradient columns
   ============================================ */
.master-table-fire-water table {
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(200, 160, 80, 0.25);
  box-shadow: 0 0 20px rgba(200, 160, 80, 0.08), 0 4px 12px rgba(0, 0, 0, 0.3);
  font-size: 0.85rem;
}

.master-table-fire-water thead tr {
  background: linear-gradient(90deg, #1a0800 0%, #2d1200 30%, #0a1a2d 70%, #1a0800 100%);
}

.master-table-fire-water thead th {
  color: #e8c47a;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 12px 10px;
  border-bottom: 2px solid rgba(232, 196, 122, 0.3);
  white-space: nowrap;
}

/* Fire% header columns (4, 8, 12) */
.master-table-fire-water thead th:nth-child(4),
.master-table-fire-water thead th:nth-child(8),
.master-table-fire-water thead th:nth-child(12) {
  color: #ff6a00;
  background: rgba(139, 37, 0, 0.3);
}

/* Water% header columns (5, 9, 13) */
.master-table-fire-water thead th:nth-child(5),
.master-table-fire-water thead th:nth-child(9),
.master-table-fire-water thead th:nth-child(13) {
  color: #5dade2;
  background: rgba(10, 61, 107, 0.3);
}

/* Dom header columns (6, 10, 14) */
.master-table-fire-water thead th:nth-child(6),
.master-table-fire-water thead th:nth-child(10),
.master-table-fire-water thead th:nth-child(14) {
  color: #e8c47a;
}

/* Pattern header (last column) */
.master-table-fire-water thead th:last-child {
  color: #e8c47a;
  background: linear-gradient(90deg, rgba(139, 37, 0, 0.2) 0%, rgba(10, 61, 107, 0.2) 100%);
}

.master-table-fire-water tbody tr {
  transition: background 0.2s ease;
}

.master-table-fire-water tbody tr:hover {
  background: rgba(232, 196, 122, 0.08);
}

/* Fire% columns (4, 8, 12) - fire gradient */
.master-table-fire-water td:nth-child(4),
.master-table-fire-water td:nth-child(8),
.master-table-fire-water td:nth-child(12) {
  background: linear-gradient(180deg, rgba(255, 69, 0, 0.12) 0%, rgba(139, 37, 0, 0.08) 100%);
  color: #ff8c40;
  font-weight: 600;
  text-align: center;
  border-left: 1px solid rgba(255, 106, 0, 0.2);
}

/* Water% columns (5, 9, 13) - water gradient */
.master-table-fire-water td:nth-child(5),
.master-table-fire-water td:nth-child(9),
.master-table-fire-water td:nth-child(13) {
  background: linear-gradient(180deg, rgba(30, 144, 255, 0.12) 0%, rgba(10, 61, 107, 0.08) 100%);
  color: #5dade2;
  font-weight: 600;
  text-align: center;
  border-left: 1px solid rgba(30, 144, 255, 0.2);
}

/* Dom columns (6, 10, 14) */
.master-table-fire-water td:nth-child(6),
.master-table-fire-water td:nth-child(10),
.master-table-fire-water td:nth-child(14) {
  text-align: center;
  font-weight: 700;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

/* Actor name column */
.master-table-fire-water td:nth-child(2) {
  font-weight: 700;
  color: #e8c47a;
}

/* Role name columns (3, 7, 11) */
.master-table-fire-water td:nth-child(3),
.master-table-fire-water td:nth-child(7),
.master-table-fire-water td:nth-child(11) {
  color: #c4b896;
  font-style: italic;
}

/* Pattern column (last) */
.master-table-fire-water td:last-child {
  text-align: center;
  font-weight: 700;
  background: linear-gradient(90deg, rgba(139, 37, 0, 0.08) 0%, rgba(10, 61, 107, 0.08) 100%);
  border-left: 1px solid rgba(232, 196, 122, 0.15);
}

.master-table-fire-water td {
  padding: 10px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: middle;
}

/* Light theme */
[data-theme='light'] .master-table-fire-water thead tr {
  background: linear-gradient(90deg, #f5e6d0 0%, #ffe8d0 30%, #d8e8f5 70%, #f5e6d0 100%);
}

[data-theme='light'] .master-table-fire-water thead th {
  color: #5a3a10;
}

[data-theme='light'] .master-table-fire-water thead th:nth-child(4),
[data-theme='light'] .master-table-fire-water thead th:nth-child(8),
[data-theme='light'] .master-table-fire-water thead th:nth-child(12) {
  color: #cc3300;
  background: rgba(255, 100, 0, 0.15);
}

[data-theme='light'] .master-table-fire-water thead th:nth-child(5),
[data-theme='light'] .master-table-fire-water thead th:nth-child(9),
[data-theme='light'] .master-table-fire-water thead th:nth-child(13) {
  color: #1565C0;
  background: rgba(30, 100, 200, 0.15);
}

[data-theme='light'] .master-table-fire-water td:nth-child(4),
[data-theme='light'] .master-table-fire-water td:nth-child(8),
[data-theme='light'] .master-table-fire-water td:nth-child(12) {
  background: rgba(255, 100, 0, 0.08);
  color: #cc3300;
}

[data-theme='light'] .master-table-fire-water td:nth-child(5),
[data-theme='light'] .master-table-fire-water td:nth-child(9),
[data-theme='light'] .master-table-fire-water td:nth-child(13) {
  background: rgba(30, 100, 200, 0.08);
  color: #1565C0;
}

[data-theme='light'] .master-table-fire-water td:nth-child(2) {
  color: #5a3a10;
}

[data-theme='light'] .master-table-fire-water table {
  border-color: rgba(180, 100, 20, 0.25);
}

[data-theme='light'] .master-table-fire-water td {
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

/* ============================================
   BIRTH CHART EXPANDABLE VIEWER
   ============================================ */
details.birth-chart-viewer {
  margin: 1.5rem 0;
  border: 1px solid rgba(232, 196, 122, 0.25);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(20, 15, 8, 0.4);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  transition: border-color 0.3s ease;
}

details.birth-chart-viewer:hover {
  border-color: rgba(232, 196, 122, 0.5);
}

details.birth-chart-viewer summary {
  padding: 14px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  color: #e8c47a;
  background: linear-gradient(90deg, rgba(26, 18, 8, 0.8) 0%, rgba(20, 12, 4, 0.6) 50%, rgba(10, 26, 45, 0.4) 100%);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  -webkit-user-select: none;
          user-select: none;
}

details.birth-chart-viewer summary::-webkit-details-marker { display: none; }

details.birth-chart-viewer summary::before {
  content: '▶';
  font-size: 0.75rem;
  transition: transform 0.3s ease;
  color: #ff6a00;
}

details.birth-chart-viewer[open] summary::before {
  transform: rotate(90deg);
}

details.birth-chart-viewer[open] summary {
  border-bottom: 1px solid rgba(232, 196, 122, 0.15);
}

details.birth-chart-viewer .chart-container {
  padding: 16px;
  text-align: center;
  background: rgba(10, 8, 5, 0.5);
}

details.birth-chart-viewer .chart-container .chart-legend {
  margin: 0 0 12px 0;
  padding: 8px 16px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: #c4a862;
  background: rgba(232, 196, 122, 0.08);
  border: 1px solid rgba(232, 196, 122, 0.15);
  border-radius: 6px;
  display: inline-block;
}

details.birth-chart-viewer .chart-container img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  border: 1px solid rgba(232, 196, 122, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* Light theme */
[data-theme='light'] details.birth-chart-viewer {
  background: rgba(245, 238, 225, 0.6);
  border-color: rgba(180, 140, 60, 0.25);
}

[data-theme='light'] details.birth-chart-viewer summary {
  color: #6b4c10;
  background: linear-gradient(90deg, rgba(245, 230, 208, 0.9) 0%, rgba(240, 216, 184, 0.7) 50%, rgba(216, 232, 245, 0.5) 100%);
}

[data-theme='light'] details.birth-chart-viewer summary::before {
  color: #cc5500;
}

[data-theme='light'] details.birth-chart-viewer .chart-container {
  background: rgba(255, 252, 245, 0.5);
}

[data-theme='light'] details.birth-chart-viewer .chart-container .chart-legend {
  color: #6b4c10;
  background: rgba(180, 140, 60, 0.08);
  border-color: rgba(180, 140, 60, 0.2);
}

[data-theme='light'] details.birth-chart-viewer .chart-container img {
  border-color: rgba(180, 140, 60, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* ============================================
   MOBILE: Leaflet map touch-action override
   Allows page scroll over inactive map on touch devices
   ============================================ */
@media (pointer: coarse) {
  .leaflet-container {
    touch-action: pan-y !important;
  }
  .leaflet-container.map-interactive {
    touch-action: auto !important;
  }
}

/* Embed service form — override Infima's light-mode input/form backgrounds */
.embed-form-card,
.embed-form-card form,
.embed-form-card div {
  background: transparent;
}
.embed-form-card input[type="text"],
.embed-form-card input[type="email"] {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}
.embed-form-card input::placeholder {
  color: #777;
}
.embed-form-card input:focus {
  border-color: #ffd700;
  outline: none;
}

.theme-unlisted-banner {
  display: none;
}

.reading-page-starfield {
  position: relative;
  z-index: 1;
}
.reading-page-starfield::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000 url(/assets/images/stars-45e604c7b09238d207124648ea63cfe7.webp) repeat center center;
  z-index: -1;
  pointer-events: none;
}
.reading-page-starfield h1,
.reading-page-starfield h2,
.reading-page-starfield h3 {
  color: var(--ifm-color-primary) !important;
}
.reading-page-starfield p,
.reading-page-starfield li,
.reading-page-starfield > div:not(.reading-feedback-form) {
  color: #c0c0c0;
}
.reading-page-starfield blockquote {
  border-left-color: var(--ifm-color-primary);
  background: rgba(255, 255, 255, 0.04);
}
.reading-page-starfield blockquote p {
  color: #d0d0d0;
}
.reading-page-starfield strong {
  color: #e0e0e0;
}
.reading-page-starfield a {
  color: var(--ifm-color-primary-light);
}
.reading-page-starfield hr {
  border-color: rgba(255, 255, 255, 0.15);
}
.reading-page-starfield img {
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
[data-theme='light'] .reading-page-starfield p,
[data-theme='light'] .reading-page-starfield li,
[data-theme='light'] .reading-page-starfield > div:not(.reading-feedback-form) {
  color: #c0c0c0;
}
[data-theme='light'] .reading-page-starfield h1,
[data-theme='light'] .reading-page-starfield h2,
[data-theme='light'] .reading-page-starfield h3 {
  color: var(--ifm-color-primary) !important;
}
:has(.reading-page-starfield) main,
:has(.reading-page-starfield) .main-wrapper,
:has(.reading-page-starfield) [class*="docMainContainer"],
:has(.reading-page-starfield) [class*="docPage"],
:has(.reading-page-starfield) [class*="docItemContainer"],
:has(.reading-page-starfield) article,
:has(.reading-page-starfield) footer.theme-doc-footer {
  background: transparent !important;
}
:has(.reading-page-starfield) footer.footer {
  background: rgba(0,0,0,0.8) !important;
}
:has(.reading-page-starfield) nav.navbar {
  background: rgba(0,0,0,0.85) !important;
  backdrop-filter: blur(8px);
}

.reading-feedback-form {
  background: linear-gradient(135deg, #cc6600 0%, #e87a00 100%) !important;
  border: 1px solid rgba(255, 160, 50, 0.4) !important;
  border-radius: 12px;
  padding: 24px 28px;
  margin-top: 48px;
  color: #fff !important;
}
.reading-feedback-form,
.reading-feedback-form h2,
.reading-feedback-form h3,
.reading-feedback-form p,
.reading-feedback-form div,
.reading-feedback-form span,
.reading-feedback-form form,
.reading-feedback-form article {
  color: #fff !important;
  background-color: transparent !important;
}
.reading-feedback-form label {
  display: block !important;
  color: #fff !important;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
  margin-top: 18px;
  cursor: pointer;
}
.reading-feedback-form textarea,
.reading-feedback-form input[type="text"] {
  background: rgba(0,0,0,0.4) !important;
  border: 1px solid rgba(255,255,255,0.35) !important;
  border-radius: 8px !important;
  color: #fff !important;
  padding: 10px 14px !important;
  font-size: 14px !important;
  line-height: 1.6;
  font-family: inherit;
  width: 100% !important;
  box-sizing: border-box;
  min-height: 80px;
  resize: vertical;
}
.reading-feedback-form input[type="text"] {
  min-height: auto !important;
  padding: 8px 12px !important;
}
.reading-feedback-form textarea::placeholder,
.reading-feedback-form input::placeholder {
  color: rgba(255,255,255,0.5) !important;
}
.reading-feedback-form .feedback-privacy-box {
  background: rgba(0,0,0,0.25) !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
  border-radius: 8px;
  padding: 16px 20px;
  margin-top: 24px;
}
.reading-feedback-form .feedback-testimonial {
  background: url(/assets/images/celestial-gold-2-nolines-17cb6da3774eaec9e8acb5d1c7220da7.webp) center/cover no-repeat !important;
  border: none !important;
  border-radius: 8px;
  padding: clamp(24px, 8vw, 80px) clamp(20px, 10vw, 140px) !important;
  margin-bottom: 16px;
  font-family: 'Caveat', cursive !important;
  font-size: 13px !important;
  line-height: 1.6 !important;
  color: #3a2a10 !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.reading-feedback-form .feedback-testimonial div,
.reading-feedback-form .feedback-testimonial span {
  color: #3a2a10 !important;
  font-family: 'Caveat', cursive !important;
}
.reading-feedback-form .feedback-testimonial .testimonial-label {
  font-family: inherit !important;
  font-size: 13px !important;
  color: #8a6a30 !important;
  font-style: italic;
}
.reading-feedback-form .feedback-testimonial .testimonial-author {
  color: #6a4a20 !important;
  font-size: 16px !important;
}
.reading-feedback-form .feedback-submit-btn {
  background: linear-gradient(135deg, #fff 0%, #ffe0b0 100%) !important;
  color: #993d00 !important;
  padding: 12px 32px;
  border-radius: 8px;
  border: none !important;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
}
.reading-feedback-form .feedback-submit-btn:disabled {
  background: #888 !important;
  color: #ccc !important;
  cursor: wait;
}
.reading-feedback-form .feedback-success {
  background: rgba(0,0,0,0.2) !important;
  border: 1px solid rgba(255,255,255,0.3) !important;
  border-radius: 8px;
  padding: 20px 24px;
  text-align: center;
  color: #fff !important;
  font-size: 16px;
}

.share-reading-section {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.25);
  text-align: center;
}
.share-reading-section h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.share-reading-section p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 20px;
  line-height: 1.5;
}
.share-buttons-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 8px;
  border: none !important;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  color: #fff !important;
  transition: transform 0.15s, opacity 0.15s;
}
.share-btn:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}
.share-btn svg {
  flex-shrink: 0;
}
.share-facebook { background: #1877F2 !important; }
.share-twitter { background: #000 !important; }
.share-whatsapp { background: #25D366 !important; }
.share-telegram { background: #0088cc !important; }
.share-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important; }
.share-tiktok { background: #010101 !important; border: 1px solid #69C9D0 !important; }
.share-copy { background: rgba(255,255,255,0.2) !important; border: 1px solid rgba(255,255,255,0.4) !important; }

.banner_Mg7b {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #fff;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  animation: slideDown_USxy 0.3s ease-out;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fadeOut_kIB8 {
  opacity: 0;
  transform: translateY(-100%);
}

@keyframes slideDown_USxy {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.content_XgW2 {
  font-size: 0.9rem;
}

.content_XgW2 a {
  color: var(--ifm-color-primary);
  font-weight: 600;
  -webkit-text-decoration: underline;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.content_XgW2 a:hover {
  color: var(--ifm-color-primary-lighter);
}

/* Light theme adjustments */
[data-theme='light'] .banner_Mg7b {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: #333;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
  .banner_Mg7b {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

#__docusaurus-base-url-issue-banner-container {
  display: none;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.backToTopButton_sjWU {
  position: fixed;
  right: 1.3rem;
  bottom: 1.3rem;
  border-radius: 50%;
  background-color: var(--ifm-color-emphasis-200);
  width: 3rem;
  height: 3rem;
  z-index: calc(var(--ifm-z-index-fixed) - 1);
  box-shadow: var(--ifm-global-shadow-lw);
  transition: all var(--ifm-transition-fast)
    var(--ifm-transition-timing-default);
  opacity: 0;
  transform: scale(0);
  visibility: hidden;
}

.backToTopButton_sjWU::after {
  content: ' ';
  display: inline-block;
  -webkit-mask: var(--ifm-menu-link-sublist-icon) 50% / 2rem 2rem no-repeat;
          mask: var(--ifm-menu-link-sublist-icon) 50% / 2rem 2rem no-repeat;
  background-color: var(--ifm-color-emphasis-1000);
  width: 100%;
  height: 100%;
}

@media (hover: hover) {
  .backToTopButton_sjWU:hover {
    background-color: var(--ifm-color-emphasis-300);
  }
}

.backToTopButtonShow_xfvO {
  opacity: 1;
  transform: scale(1);
  visibility: visible;
}

/* required styles */

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	        user-select: none;
	  -webkit-user-drag: none;
	}
/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::selection {
	background: transparent;
}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
	image-rendering: -webkit-optimize-contrast;
	}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
	width: 1600px;
	height: 1600px;
	-webkit-transform-origin: 0 0;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg {
	max-width: none !important;
	max-height: none !important;
	}
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
	max-width: none !important;
	max-height: none !important;
	width: auto;
	padding: 0;
	}

.leaflet-container img.leaflet-tile {
	/* See: https://bugs.chromium.org/p/chromium/issues/detail?id=600120 */
	mix-blend-mode: plus-lighter;
}

.leaflet-container.leaflet-touch-zoom {
	touch-action: pan-x pan-y;
	}
.leaflet-container.leaflet-touch-drag {
	/* Fallback for FF which doesn't support pinch-zoom */
	touch-action: none;
	touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
	touch-action: none;
}
.leaflet-container {
	-webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
	-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
	filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	box-sizing: border-box;
	z-index: 800;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	-moz-user-select: none;
	}

.leaflet-pane         { z-index: 400; }

.leaflet-tile-pane    { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane  { z-index: 500; }
.leaflet-marker-pane  { z-index: 600; }
.leaflet-tooltip-pane   { z-index: 650; }
.leaflet-popup-pane   { z-index: 700; }

.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg    { z-index: 200; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute;
	}


/* control positioning */

.leaflet-control {
	position: relative;
	z-index: 800;
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}
.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
	}
.leaflet-top {
	top: 0;
	}
.leaflet-right {
	right: 0;
	}
.leaflet-bottom {
	bottom: 0;
	}
.leaflet-left {
	left: 0;
	}
.leaflet-control {
	float: left;
	clear: both;
	}
.leaflet-right .leaflet-control {
	float: right;
	}
.leaflet-top .leaflet-control {
	margin-top: 10px;
	}
.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
	}
.leaflet-left .leaflet-control {
	margin-left: 10px;
	}
.leaflet-right .leaflet-control {
	margin-right: 10px;
	}


/* zoom and fade animations */

.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	transition: opacity 0.2s linear;
	}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}
.leaflet-zoom-animated {
	transform-origin: 0 0;
	}
svg.leaflet-zoom-animated {
	will-change: transform;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
	transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
	transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.leaflet-interactive {
	cursor: pointer;
	}
.leaflet-grab {
	cursor:         grab;
	}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
	cursor: crosshair;
	}
.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
	}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
	cursor: move;
	cursor:         grabbing;
	}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
	pointer-events: none;
	}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}

/* visual tweaks */

.leaflet-container {
	background: #ddd;
	outline-offset: 1px;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.5;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	-webkit-text-decoration: none;
	text-decoration: none;
	color: black;
	}
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.leaflet-bar a:hover,
.leaflet-bar a:focus {
	background-color: #f4f4f4;
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}
.leaflet-touch .leaflet-bar a:first-child {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	}
.leaflet-touch .leaflet-bar a:last-child {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	}

/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
	font-size: 22px;
	}


/* layers control */

.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}
.leaflet-control-layers-toggle {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAQAAAADQ4RFAAACf0lEQVR4AY1UM3gkARTePdvdoTxXKc+qTl3aU5U6b2Kbkz3Gtq3Zw6ziLGNPzrYx7946Tr6/ee/XeCQ4D3ykPtL5tHno4n0d/h3+xfuWHGLX81cn7r0iTNzjr7LrlxCqPtkbTQEHeqOrTy4Yyt3VCi/IOB0v7rVC7q45Q3Gr5K6jt+3Gl5nCoDD4MtO+j96Wu8atmhGqcNGHObuf8OM/x3AMx38+4Z2sPqzCxRFK2aF2e5Jol56XTLyggAMTL56XOMoS1W4pOyjUcGGQdZxU6qRh7B9Zp+PfpOFlqt0zyDZckPi1ttmIp03jX8gyJ8a/PG2yutpS/Vol7peZIbZcKBAEEheEIAgFbDkz5H6Zrkm2hVWGiXKiF4Ycw0RWKdtC16Q7qe3X4iOMxruonzegJzWaXFrU9utOSsLUmrc0YjeWYjCW4PDMADElpJSSQ0vQvA1Tm6/JlKnqFs1EGyZiFCqnRZTEJJJiKRYzVYzJck2Rm6P4iH+cmSY0YzimYa8l0EtTODFWhcMIMVqdsI2uiTvKmTisIDHJ3od5GILVhBCarCfVRmo4uTjkhrhzkiBV7SsaqS+TzrzM1qpGGUFt28pIySQHR6h7F6KSwGWm97ay+Z+ZqMcEjEWebE7wxCSQwpkhJqoZA5ivCdZDjJepuJ9IQjGGUmuXJdBFUygxVqVsxFsLMbDe8ZbDYVCGKxs+W080max1hFCarCfV+C1KATwcnvE9gRRuMP2prdbWGowm1KB1y+zwMMENkM755cJ2yPDtqhTI6ED1M/82yIDtC/4j4BijjeObflpO9I9MwXTCsSX8jWAFeHr05WoLTJ5G8IQVS/7vwR6ohirYM7f6HzYpogfS3R2OAAAAAElFTkSuQmCC);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAA0CAQAAABvcdNgAAAEsklEQVR4AWL4TydIhpZK1kpWOlg0w3ZXP6D2soBtG42jeI6ZmQTHzAxiTbSJsYLjO9HhP+WOmcuhciVnmHVQcJnp7DFvScowZorad/+V/fVzMdMT2g9Cv9guXGv/7pYOrXh2U+RRR3dSd9JRx6bIFc/ekqHI29JC6pJ5ZEh1yWkhkbcFeSjxgx3L2m1cb1C7bceyxA+CNjT/Ifff+/kDk2u/w/33/IeCMOSaWZ4glosqT3DNnNZQ7Cs58/3Ce5HL78iZH/vKVIaYlqzfdLu8Vi7dnvUbEza5Idt36tquZFldl6N5Z/POLof0XLK61mZCmJSWjVF9tEjUluu74IUXvgttuVIHE7YxSkaYhJZam7yiM9Pv82JYfl9nptxZaxMJE4YSPty+vF0+Y2up9d3wwijfjZbabqm/3bZ9ecKHsiGmRflnn1MW4pjHf9oLufyn2z3y1D6n8g8TZhxyzipLNPnAUpsOiuWimg52psrTZYnOWYNDTMuWBWa0tJb4rgq1UvmutpaYEbZlwU3CLJm/ayYjHW5/h7xWLn9Hh1vepDkyf7dE7MtT5LR4e7yYpHrkhOUpEfssBLq2pPhAqoSWKUkk7EDqkmK6RrCEzqDjhNDWNE+XSMvkJRDWlZTmCW0l0PHQGRZY5t1L83kT0Y3l2SItk5JAWHl2dCOBm+fPu3fo5/3v61RMCO9Jx2EEYYhb0rmNQMX/vm7gqOEJLcXTGw3CAuRNeyaPWwjR8PRqKQ1PDA/dpv+on9Shox52WFnx0KY8onHayrJzm87i5h9xGw/tfkev0jGsQizqezUKjk12hBMKJ4kbCqGPVNXudyyrShovGw5CgxsRICxF6aRmSjlBnHRzg7Gx8fKqEubI2rahQYdR1YgDIRQO7JvQyD52hoIQx0mxa0ODtW2Iozn1le2iIRdzwWewedyZzewidueOGqlsn1MvcnQpuVwLGG3/IR1hIKxCjelIDZ8ldqWz25jWAsnldEnK0Zxro19TGVb2ffIZEsIO89EIEDvKMPrzmBOQcKQ+rroye6NgRRxqR4U8EAkz0CL6uSGOm6KQCdWjvjRiSP1BPalCRS5iQYiEIvxuBMJEWgzSoHADcVMuN7IuqqTeyUPq22qFimFtxDyBBJEwNyt6TM88blFHao/6tWWhuuOM4SAK4EI4QmFHA+SEyWlp4EQoJ13cYGzMu7yszEIBOm2rVmHUNqwAIQabISNMRstmdhNWcFLsSm+0tjJH1MdRxO5Nx0WDMhCtgD6OKgZeljJqJKc9po8juskR9XN0Y1lZ3mWjLR9JCO1jRDMd0fpYC2VnvjBSEFg7wBENc0R9HFlb0xvF1+TBEpF68d+DHR6IOWVv2BECtxo46hOFUBd/APU57WIoEwJhIi2CdpyZX0m93BZicktMj1AS9dClteUFAUNUIEygRZCtik5zSxI9MubTBH1GOiHsiLJ3OCoSZkILa9PxiN0EbvhsAo8tdAf9Seepd36lGWHmtNANTv5Jd0z4QYyeo/UEJqxKRpg5LZx6btLPsOaEmdMyxYdlc8LMaJnikDlhclqmPiQnTEpLUIZEwkRagjYkEibQErwhkTAKCLQEbUgkzJQWc/0PstHHcfEdQ+UAAAAASUVORK5CYII=);
	background-size: 26px 26px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.leaflet-control-layers-scrollbar {
	overflow-y: scroll;
	overflow-x: hidden;
	padding-right: 5px;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	font-size: 13px;
	font-size: 1.08333em;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}

/* Default icon URLs */
.leaflet-default-icon-path { /* used only in path-guessing heuristic, see L.Icon.Default */
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAApCAYAAADAk4LOAAAFgUlEQVR4Aa1XA5BjWRTN2oW17d3YaZtr2962HUzbDNpjszW24mRt28p47v7zq/bXZtrp/lWnXr337j3nPCe85NcypgSFdugCpW5YoDAMRaIMqRi6aKq5E3YqDQO3qAwjVWrD8Ncq/RBpykd8oZUb/kaJutow8r1aP9II0WmLKLIsJyv1w/kqw9Ch2MYdB++12Onxee/QMwvf4/Dk/Lfp/i4nxTXtOoQ4pW5Aj7wpici1A9erdAN2OH64x8OSP9j3Ft3b7aWkTg/Fm91siTra0f9on5sQr9INejH6CUUUpavjFNq1B+Oadhxmnfa8RfEmN8VNAsQhPqF55xHkMzz3jSmChWU6f7/XZKNH+9+hBLOHYozuKQPxyMPUKkrX/K0uWnfFaJGS1QPRtZsOPtr3NsW0uyh6NNCOkU3Yz+bXbT3I8G3xE5EXLXtCXbbqwCO9zPQYPRTZ5vIDXD7U+w7rFDEoUUf7ibHIR4y6bLVPXrz8JVZEql13trxwue/uDivd3fkWRbS6/IA2bID4uk0UpF1N8qLlbBlXs4Ee7HLTfV1j54APvODnSfOWBqtKVvjgLKzF5YdEk5ewRkGlK0i33Eofffc7HT56jD7/6U+qH3Cx7SBLNntH5YIPvODnyfIXZYRVDPqgHtLs5ABHD3YzLuespb7t79FY34DjMwrVrcTuwlT55YMPvOBnRrJ4VXTdNnYug5ucHLBjEpt30701A3Ts+HEa73u6dT3FNWwflY86eMHPk+Yu+i6pzUpRrW7SNDg5JHR4KapmM5Wv2E8Tfcb1HoqqHMHU+uWDD7zg54mz5/2BSnizi9T1Dg4QQXLToGNCkb6tb1NU+QAlGr1++eADrzhn/u8Q2YZhQVlZ5+CAOtqfbhmaUCS1ezNFVm2imDbPmPng5wmz+gwh+oHDce0eUtQ6OGDIyR0uUhUsoO3vfDmmgOezH0mZN59x7MBi++WDL1g/eEiU3avlidO671bkLfwbw5XV2P8Pzo0ydy4t2/0eu33xYSOMOD8hTf4CrBtGMSoXfPLchX+J0ruSePw3LZeK0juPJbYzrhkH0io7B3k164hiGvawhOKMLkrQLyVpZg8rHFW7E2uHOL888IBPlNZ1FPzstSJM694fWr6RwpvcJK60+0HCILTBzZLFNdtAzJaohze60T8qBzyh5ZuOg5e7uwQppofEmf2++DYvmySqGBuKaicF1blQjhuHdvCIMvp8whTTfZzI7RldpwtSzL+F1+wkdZ2TBOW2gIF88PBTzD/gpeREAMEbxnJcaJHNHrpzji0gQCS6hdkEeYt9DF/2qPcEC8RM28Hwmr3sdNyht00byAut2k3gufWNtgtOEOFGUwcXWNDbdNbpgBGxEvKkOQsxivJx33iow0Vw5S6SVTrpVq11ysA2Rp7gTfPfktc6zhtXBBC+adRLshf6sG2RfHPZ5EAc4sVZ83yCN00Fk/4kggu40ZTvIEm5g24qtU4KjBrx/BTTH8ifVASAG7gKrnWxJDcU7x8X6Ecczhm3o6YicvsLXWfh3Ch1W0k8x0nXF+0fFxgt4phz8QvypiwCCFKMqXCnqXExjq10beH+UUA7+nG6mdG/Pu0f3LgFcGrl2s0kNNjpmoJ9o4B29CMO8dMT4Q5ox8uitF6fqsrJOr8qnwNbRzv6hSnG5wP+64C7h9lp30hKNtKdWjtdkbuPA19nJ7Tz3zR/ibgARbhb4AlhavcBebmTHcFl2fvYEnW0ox9xMxKBS8btJ+KiEbq9zA4RthQXDhPa0T9TEe69gWupwc6uBUphquXgf+/FrIjweHQS4/pduMe5ERUMHUd9xv8ZR98CxkS4F2n3EUrUZ10EYNw7BWm9x1GiPssi3GgiGRDKWRYZfXlON+dfNbM+GgIwYdwAAAAASUVORK5CYII=);
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.8);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	line-height: 1.4;
	}
.leaflet-control-attribution a {
	-webkit-text-decoration: none;
	text-decoration: none;
	}
.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus {
	-webkit-text-decoration: underline;
	text-decoration: underline;
	}
.leaflet-attribution-flag {
	display: inline !important;
	vertical-align: baseline !important;
	width: 1em;
	height: 0.6669em;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	white-space: nowrap;
	box-sizing: border-box;
	background: rgba(255, 255, 255, 0.8);
	text-shadow: 1px 1px #fff;
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}


/* popup */

.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}
.leaflet-popup-content {
	margin: 13px 24px 13px 20px;
	line-height: 1.3;
	font-size: 13px;
	font-size: 1.08333em;
	min-height: 1px;
	}
.leaflet-popup-content p {
	margin: 17px 0;
	margin: 1.3em 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-top: -1px;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;
	pointer-events: auto;
	transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;
	color: #333;
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	border: none;
	text-align: center;
	width: 24px;
	height: 24px;
	font: 16px/24px Tahoma, Verdana, sans-serif;
	color: #757575;
	-webkit-text-decoration: none;
	text-decoration: none;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus {
	color: #585858;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	-ms-zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}


/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}


/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}
.leaflet-tooltip.leaflet-interactive {
	cursor: pointer;
	pointer-events: auto;
	}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
	}

/* Directions */

.leaflet-tooltip-bottom {
	margin-top: 6px;
}
.leaflet-tooltip-top {
	margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
	}
.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff;
	}
.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
	}
.leaflet-tooltip-left {
	margin-left: -6px;
}
.leaflet-tooltip-right {
	margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
	}
.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
	}
.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
	}

/* Printing */

@media print {
	/* Prevent printers from removing background-images of controls. */
	.leaflet-control {
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
		}
	}

.astrology-chart-container {
  max-width: 900px;
  margin: 2rem auto;
  padding: 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.astrology-chart-container h2 {
  color: #2c3e50;
  margin: 0 0 0.5rem 0;
  font-size: 2rem;
}

.subtitle {
  color: #7f8c8d;
  margin-top: 0;
  margin-bottom: 2rem;
}

form {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #2c3e50;
  font-size: 0.95rem;
}

.form-group input,
.form-group select {
  padding: 0.75rem;
  border: 2px solid #ecf0f1;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.celebrity-select {
  background-color: #f9f9f9;
  cursor: pointer;
  padding: 0.75rem;
  border: 2px solid #667eea;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
}

.form-group small {
  font-size: 0.85rem;
  color: #95a5a6;
  margin-top: 0.25rem;
}

.submit-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.submit-btn:disabled {
  background: #bdc3c7;
  cursor: not-allowed;
  transform: none;
}

.error-message {
  background: #fadbd8;
  color: #c0392b;
  padding: 1rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  border-left: 4px solid #c0392b;
  font-weight: 500;
}

.chart-output {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid #ecf0f1;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.chart-output h3 {
  color: #2c3e50;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.chart-content {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  overflow-x: auto;
  border: 1px solid #e0e0e0;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.chart-output pre {
  background: #f5f5f5;
  padding: 1rem;
  border-radius: 4px;
  overflow-x: auto;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #2c3e50;
  font-family: 'Monaco', 'Menlo', 'Consolas', monospace;
  margin-bottom: 1rem;
}

.markdown-body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #24292e;
}

.markdown-body h1 {
  border-bottom: 2px solid #667eea;
  padding-bottom: 0.3em;
}

.markdown-body h2 {
  border-bottom: 1px solid #eaecef;
  padding-bottom: 0.3em;
}

.markdown-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.markdown-body table tr {
  border-top: 1px solid #ddd;
}

.markdown-body table tr:nth-child(2n) {
  background-color: #f6f8fa;
}

/* Exalted planet row styling */
.markdown-body table tr[style*="backgroundColor: rgb(255, 251, 240)"],
.markdown-body table tr[style*="backgroundColor: #fffbf0"] {
  background-color: #fffbf0 !important;
  font-weight: bold;
  border-left: 4px solid #d4af37;
  box-shadow: inset 0 0 8px rgba(212, 175, 55, 0.15);
}

/* Highlight the planet name in exalted row */
.markdown-body table tr[style*="backgroundColor: rgb(255, 251, 240)"] td:first-child,
.markdown-body table tr[style*="backgroundColor: #fffbf0"] td:first-child {
  color: #d4af37;
  font-weight: bold;
}

/* Dominant Aditya row styling - Light Red (1 planet) */
.markdown-body table tr[style*="backgroundColor: rgb(255, 232, 232)"],
.markdown-body table tr[style*="backgroundColor: #ffe8e8"] {
  background-color: #ffe8e8 !important;
  box-shadow: inset 0 0 6px rgba(139, 51, 51, 0.1);
}

/* Dominant Aditya row styling - Medium-Light Red (2 planets) */
.markdown-body table tr[style*="backgroundColor: rgb(255, 204, 204)"],
.markdown-body table tr[style*="backgroundColor: #ffcccc"] {
  background-color: #ffcccc !important;
  box-shadow: inset 0 0 6px rgba(167, 56, 56, 0.15);
}

/* Dominant Aditya row styling - Medium Red (3 planets) */
.markdown-body table tr[style*="backgroundColor: rgb(255, 153, 153)"],
.markdown-body table tr[style*="backgroundColor: #ff9999"] {
  background-color: #ff9999 !important;
  font-weight: 500;
  box-shadow: inset 0 0 6px rgba(199, 64, 64, 0.2);
}

/* Dominant Aditya row styling - Darker Red (4 planets) */
.markdown-body table tr[style*="backgroundColor: rgb(255, 102, 102)"],
.markdown-body table tr[style*="backgroundColor: #ff6666"] {
  background-color: #ff6666 !important;
  font-weight: 600;
  box-shadow: inset 0 0 6px rgba(217, 72, 72, 0.3);
}

/* Dominant Aditya row styling - Deep Red (5+ planets) */
.markdown-body table tr[style*="backgroundColor: rgb(255, 51, 51)"],
.markdown-body table tr[style*="backgroundColor: #ff3333"] {
  background-color: #ff3333 !important;
  font-weight: bold;
  color: white;
  box-shadow: inset 0 0 6px rgba(230, 48, 48, 0.4);
}

.markdown-body table tr[style*="backgroundColor: #ff3333"] td {
  color: white;
}

.markdown-body table th,
.markdown-body table td {
  padding: 12px 13px;
  border: 1px solid #ddd;
}

.markdown-body table th {
  background-color: #667eea;
  color: white;
  font-weight: 600;
  text-align: left;
}

.markdown-body code {
  background-color: rgba(27, 31, 35, 0.05);
  padding: 0.2em 0.4em;
  margin: 0;
  font-size: 85%;
  border-radius: 3px;
  font-family: 'Monaco', 'Menlo', 'Consolas', monospace;
}

.markdown-body pre code {
  background-color: transparent;
  padding: 0;
  margin: 0;
  font-size: 100%;
}

.markdown-body blockquote {
  padding: 0 1em;
  color: #6a737d;
  border-left: 0.25em solid #dfe2e5;
  margin: 0 0 16px 0;
}

.markdown-body ul,
.markdown-body ol {
  padding-left: 2em;
  margin: 1rem 0;
}

.markdown-body li {
  margin: 0.25rem 0;
}

.download-btn {
  background: #27ae60;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.download-btn:hover {
  background: #229954;
  transform: translateY(-2px);
}

.map-toggle-btn {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
  width: 100%;
}

.map-toggle-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.6);
}

.map-container {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border: 1px solid #ecf0f1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.map-instruction {
  color: #7f8c8d;
  font-size: 0.95rem;
  margin: 0 0 1rem 0;
  text-align: center;
  font-weight: 500;
}

.location-search-input {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #ecf0f1;
  border-radius: 6px;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.location-search-input:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.search-box {
  position: relative;
  margin-bottom: 1.5rem;
}

.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ecf0f1;
  border-top: none;
  border-radius: 0 0 6px 6px;
  z-index: 10;
  max-height: 300px;
  overflow-y: auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.search-result-item {
  padding: 0.75rem 1rem;
  cursor: pointer;
  border-bottom: 1px solid #ecf0f1;
  transition: background-color 0.2s ease;
}

.search-result-item:hover {
  background-color: #f0f4f8;
}

.search-result-item:last-child {
  border-bottom: none;
}

.result-name {
  color: #2c3e50;
  font-size: 0.95rem;
}

.google-map {
  width: 100%;
  height: 400px;
  border-radius: 6px;
  border: 1px solid #ecf0f1;
}

@media (max-width: 768px) {
  .astrology-chart-container {
    padding: 1rem;
    margin: 1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .astrology-chart-container h2 {
    font-size: 1.5rem;
  }

  .chart-output pre {
    font-size: 0.75rem;
  }

  .google-map {
    height: 300px;
  }

  .map-toggle-btn {
    font-size: 0.9rem;
    padding: 0.7rem 1.5rem;
  }
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.skipToContent_fXgn {
  position: fixed;
  top: 1rem;
  left: 100%;
  z-index: calc(var(--ifm-z-index-fixed) + 1);
  padding: calc(var(--ifm-global-spacing) / 2) var(--ifm-global-spacing);
  color: var(--ifm-color-emphasis-900);
  background-color: var(--ifm-background-surface-color);
}

.skipToContent_fXgn:focus {
  left: 1rem;
  box-shadow: var(--ifm-global-shadow-md);
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.closeButton_CVFx {
  padding: 0;
  line-height: 0;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.content_knG7 {
  font-size: 85%;
  text-align: center;
  padding: 5px 0;
}

.content_knG7 a {
  color: inherit;
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

:root {
  --docusaurus-announcement-bar-height: auto;
}

.announcementBar_mb4j {
  display: flex;
  align-items: center;
  height: var(--docusaurus-announcement-bar-height);
  background-color: var(--ifm-color-white);
  color: var(--ifm-color-black);

  /*
  Unfortunately we can't make announcement bar render above the navbar
  IE need to use border-bottom instead of shadow
  See https://github.com/facebookincubator/infima/issues/275

  box-shadow: var(--ifm-global-shadow-lw);
  z-index: calc(var(--ifm-z-index-fixed) + 1);
  */
  border-bottom: 1px solid var(--ifm-color-emphasis-100);
}

html[data-announcement-bar-initially-dismissed='true'] .announcementBar_mb4j {
  display: none;
}

.announcementBarPlaceholder_vyr4 {
  flex: 0 0 10px;
}

.announcementBarClose_gvF7 {
  flex: 0 0 30px;
  align-self: stretch;
}

.announcementBarContent_xLdY {
  flex: 1 1 auto;
}

@media print {
  .announcementBar_mb4j {
    display: none;
  }
}

@media (min-width: 997px) {
  :root {
    --docusaurus-announcement-bar-height: 30px;
  }

  .announcementBarPlaceholder_vyr4,
  .announcementBarClose_gvF7 {
    flex-basis: 50px;
  }
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.toggle_vylO {
  width: 2rem;
  height: 2rem;
}

.toggleButton_gllP {
  -webkit-tap-highlight-color: transparent;
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: background var(--ifm-transition-fast);
}

.toggleButton_gllP:hover {
  background: var(--ifm-color-emphasis-200);
}

.toggleIcon_g3eP {
  display: none;
}

[data-theme-choice='system'] .systemToggleIcon_QzmC,
[data-theme-choice='light'] .lightToggleIcon_pyhR,
[data-theme-choice='dark'] .darkToggleIcon_wfgR {
  display: initial;
}

.toggleButtonDisabled_aARS {
  cursor: not-allowed;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.darkNavbarColorModeToggle_X3D1:hover {
  background: var(--ifm-color-gray-800);
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.themedComponent_mlkZ {
  display: none;
}

[data-theme='light'] .themedComponent--light_NVdE {
  display: initial;
}

[data-theme='dark'] .themedComponent--dark_xIcU {
  display: initial;
}

/*
JS disabled??? Show light version by default => better than showing nothing
TODO bad, but we currently always show light mode when there's no data-theme
 */
html:not([data-theme]) .themedComponent--light_NVdE {
  display: initial;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

:root {
  --docusaurus-collapse-button-bg: transparent;
  --docusaurus-collapse-button-bg-hover: rgb(0 0 0 / 10%);
}

[data-theme='dark']:root {
  --docusaurus-collapse-button-bg: rgb(255 255 255 / 5%);
  --docusaurus-collapse-button-bg-hover: rgb(255 255 255 / 10%);
}

@media (min-width: 997px) {
  .collapseSidebarButton_PEFL {
    display: block !important;
    background-color: var(--docusaurus-collapse-button-bg);
    height: 40px;
    position: sticky;
    bottom: 0;
    border-radius: 0;
    border: 1px solid var(--ifm-toc-border-color);
  }

  .collapseSidebarButtonIcon_kv0_ {
    transform: rotate(180deg);
    margin-top: 4px;
  }

  [dir='rtl'] .collapseSidebarButtonIcon_kv0_ {
    transform: rotate(0);
  }

  .collapseSidebarButton_PEFL:hover,
  .collapseSidebarButton_PEFL:focus {
    background-color: var(--docusaurus-collapse-button-bg-hover);
  }
}

.collapseSidebarButton_PEFL {
  display: none;
  margin: 0;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.iconExternalLink_nPIU {
  margin-left: 0.3rem;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.menuExternalLink_NmtK {
  align-items: center;
}

.linkLabel_WmDU {
  overflow: hidden;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.categoryLink_byQd {
  overflow: hidden;
}

/*
TODO merge this logic back in Infima?
 */
.menu__link--sublist-caret::after {
  margin-left: var(--ifm-menu-link-padding-vertical);
}

.categoryLinkLabel_W154 {
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

@media (min-width: 997px) {
  .menuHtmlItem_M9Kj {
    padding: var(--ifm-menu-link-padding-vertical)
      var(--ifm-menu-link-padding-horizontal);
  }
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

@media (min-width: 997px) {
  .menu_SIkG {
    flex-grow: 1;
    padding: 0.5rem;
  }
  @supports (scrollbar-gutter: stable) {
    .menu_SIkG {
      padding: 0.5rem 0 0.5rem 0.5rem;
      scrollbar-gutter: stable;
    }
  }

  .menuWithAnnouncementBar_GW3s {
    margin-bottom: var(--docusaurus-announcement-bar-height);
  }
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

@media (min-width: 997px) {
  .sidebar_njMd {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-top: var(--ifm-navbar-height);
    width: var(--doc-sidebar-width);
  }

  .sidebarWithHideableNavbar_wUlq {
    padding-top: 0;
  }

  .sidebarHidden_VK0M {
    opacity: 0;
    visibility: hidden;
  }

  .sidebarLogo_isFc {
    display: flex !important;
    align-items: center;
    margin: 0 var(--ifm-navbar-padding-horizontal);
    min-height: var(--ifm-navbar-height);
    max-height: var(--ifm-navbar-height);
    color: inherit !important;
    -webkit-text-decoration: none !important;
    text-decoration: none !important;
  }

  .sidebarLogo_isFc img {
    margin-right: 0.5rem;
    height: 2rem;
  }
}

.sidebarLogo_isFc {
  display: none;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

@media (min-width: 997px) {
  .expandButton_TmdG {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--ifm-transition-fast) ease;
    background-color: var(--docusaurus-collapse-button-bg);
  }

  .expandButton_TmdG:hover,
  .expandButton_TmdG:focus {
    background-color: var(--docusaurus-collapse-button-bg-hover);
  }

  .expandButtonIcon_i1dp {
    transform: rotate(0);
  }

  [dir='rtl'] .expandButtonIcon_i1dp {
    transform: rotate(180deg);
  }
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

:root {
  --doc-sidebar-width: 300px;
  --doc-sidebar-hidden-width: 30px;
}

.docSidebarContainer_YfHR {
  display: none;
}

@media (min-width: 997px) {
  .docSidebarContainer_YfHR {
    display: block;
    width: var(--doc-sidebar-width);
    margin-top: calc(-1 * var(--ifm-navbar-height));
    border-right: 1px solid var(--ifm-toc-border-color);
    will-change: width;
    transition: width var(--ifm-transition-fast) ease;
    clip-path: inset(0);
  }

  .docSidebarContainerHidden_DPk8 {
    width: var(--doc-sidebar-hidden-width);
    cursor: pointer;
  }

  .sidebarViewport_aRkj {
    top: 0;
    position: sticky;
    height: 100%;
    max-height: 100vh;
  }
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.docMainContainer_TBSr {
  display: flex;
  width: 100%;
}

@media (min-width: 997px) {
  .docMainContainer_TBSr {
    flex-grow: 1;
    max-width: calc(100% - var(--doc-sidebar-width));
  }

  .docMainContainerEnhanced_lQrH {
    max-width: calc(100% - var(--doc-sidebar-hidden-width));
  }

  .docItemWrapperEnhanced_JWYK {
    max-width: calc(
      var(--ifm-container-width) + var(--doc-sidebar-width)
    ) !important;
  }
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.docRoot_UBD9 {
  display: flex;
  width: 100%;
}

.docsWrapper_hBAB {
  display: flex;
  flex: 1 0 auto;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.hash-link {
  opacity: 0;
  padding-left: 0.5rem;
  transition: opacity var(--ifm-transition-fast);
  -webkit-user-select: none;
          user-select: none;
}

.hash-link::before {
  content: '#';
}

.hash-link:focus,
*:hover > .hash-link {
  opacity: 1;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.anchorTargetStickyNavbar_Vzrq {
  scroll-margin-top: calc(var(--ifm-navbar-height) + 0.5rem);
}

.anchorTargetHideOnScrollNavbar_vjPI {
  scroll-margin-top: 0.5rem;
}

.cardContainer_S8oU {
  --ifm-link-color: var(--ifm-color-emphasis-800);
  --ifm-link-hover-color: var(--ifm-color-emphasis-700);
  --ifm-link-hover-decoration: none;

  box-shadow: 0 1.5px 3px 0 rgb(0 0 0 / 15%);
  border: 1px solid var(--ifm-color-emphasis-200);
  transition: all var(--ifm-transition-fast) ease;
  transition-property: border, box-shadow;
}

.cardContainer_S8oU:hover {
  border-color: var(--ifm-color-primary);
  box-shadow: 0 3px 6px 0 rgb(0 0 0 / 20%);
}

.cardContainer_S8oU *:last-child {
  margin-bottom: 0;
}

.cardTitle_HoSo {
  font-size: 1.2rem;
}

.cardDescription_c27F {
  font-size: 0.8rem;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.docCardListItem_W1sv {
  margin-bottom: 2rem;
}

.docCardListItem_W1sv > * {
  height: 100%;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.dropdownNavbarItemMobile_J0Sd {
  cursor: pointer;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.iconLanguage_nlXk {
  vertical-align: text-bottom;
  margin-right: 5px;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

/*
Workaround to avoid rendering empty search container
See https://github.com/facebook/docusaurus/pull/9385
*/
.navbarSearchContainer_Bca1:empty {
  display: none;
}

@media (max-width: 996px) {
  .navbarSearchContainer_Bca1 {
    position: absolute;
    right: var(--ifm-navbar-padding-horizontal);
  }
}

@media (min-width: 997px) {
  .navbarSearchContainer_Bca1 {
    padding: 0 var(--ifm-navbar-item-padding-horizontal);
  }
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.navbarHideable_m1mJ {
  transition: transform var(--ifm-transition-fast) ease;
}

.navbarHidden_jGov {
  transform: translate3d(0, calc(-100% - 2px), 0);
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

/*
Hide color mode toggle in small viewports
 */
@media (max-width: 996px) {
  .colorModeToggle_DEke {
    display: none;
  }
}

/*
Restore some Infima style that broke with CSS Cascade Layers
See https://github.com/facebook/docusaurus/pull/11142
 */
.navbar__items--right > :last-child {
  padding-right: 0;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.errorBoundaryError_a6uf {
  white-space: pre-wrap;
  color: red;
}

.errorBoundaryFallback_VBag {
  color: red;
  padding: 0.55rem;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.footerLogoLink_BH7S {
  opacity: 0.5;
  transition: opacity var(--ifm-transition-fast)
    var(--ifm-transition-timing-default);
}

.footerLogoLink_BH7S:hover {
  opacity: 1;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

html,
body {
  height: 100%;
}

.mainWrapper_z2l0 {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

/* Docusaurus-specific utility class */
.docusaurus-mt-lg {
  margin-top: 3rem;
}

#__docusaurus {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.sidebar_re4s {
  max-height: calc(100vh - (var(--ifm-navbar-height) + 2rem));
  overflow-y: auto;
  position: sticky;
  top: calc(var(--ifm-navbar-height) + 2rem);
}

.sidebarItemTitle_pO2u {
  font-size: var(--ifm-h3-font-size);
  font-weight: var(--ifm-font-weight-bold);
}

.sidebarItemList_Yudw {
  font-size: 0.9rem;
}

.sidebarItem__DBe {
  margin-top: 0.7rem;
}

.sidebarItemLink_mo7H {
  color: var(--ifm-font-color-base);
  display: block;
}

.sidebarItemLink_mo7H:hover {
  -webkit-text-decoration: none;
  text-decoration: none;
}

.sidebarItemLinkActive_I1ZP {
  color: var(--ifm-color-primary) !important;
}

@media (max-width: 996px) {
  .sidebar_re4s {
    display: none;
  }
}

.yearGroupHeading_rMGB {
  margin-top: 1.6rem;
  margin-bottom: 0.4rem;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.yearGroupHeading_QT03 {
  margin: 1rem 0.75rem 0.5rem;
}

.features_t9lD {
  display: flex;
  align-items: center;
  padding: 3rem 0;
  width: 100%;
  justify-content: center;
}

/* Force the row container to use flex layout for side-by-side cards */
.row {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 2rem !important;
  margin-bottom: 3rem !important;
}

/* Ensure col--6 cards appear side by side */
.col--6 {
  flex: 0 0 calc(50% - 1rem) !important;
  max-width: calc(50% - 1rem) !important;
  min-width: 300px !important;
  margin: 0 !important;
}

.featureCard_QAQr {
  background: black;
  border-radius: 12px;
  padding: 2.5rem;
  height: 100%;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #333;
  margin: 0;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.featureCard_QAQr:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  border-color: #007bff;
}

.featureIcon_GA8l {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.featureImage_n6ct {
  width: 300px;
  height: 300px;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: brightness(0.9);
  border-radius: 50%;
}

.sunImage_HJZh:hover {
  transform: scale(1.1);
  filter: brightness(1.1);
  box-shadow:
    0 0 0 10px rgba(255, 215, 0, 0.2),
    0 0 0 20px rgba(255, 165, 0, 0.15),
    0 0 0 30px rgba(255, 69, 0, 0.1);
}

.moonImage_aggF:hover {
  transform: scale(1.1);
  filter: brightness(1.1);
  box-shadow:
    0 0 0 10px rgba(173, 216, 230, 0.3),
    0 0 0 20px rgba(135, 206, 250, 0.2),
    0 0 0 30px rgba(70, 130, 180, 0.1);
}

.featureCard_QAQr:hover .featureIcon_GA8l {
  transform: none;
}

.featureTitle_L1YZ {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.featureDescription_sP1D {
  font-size: 1rem;
  line-height: 1.5;
  color: #cccccc;
}

.featureRow_DEue {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Responsive design */
@media (max-width: 768px) {
  .col--6 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    min-width: 280px !important;
  }
  
  .featureCard_QAQr {
    min-height: 240px;
    padding: 2rem;
  }
  
  .featureIcon_GA8l {
    font-size: 4.5rem;
  }
  
  .featureTitle_L1YZ {
    font-size: 1.3rem;
  }
}

/**
 * CSS files with the .module.css suffix will be treated as CSS modules
 * and scoped locally.
 */

.heroBanner_qdFl {
  background-image:
    url(/assets/images/Signs_earth-f4ce2f278fb9b1f8fddaaaad1a37a4ef.webp),  /* ← now on top */
    url(/assets/images/stars-45e604c7b09238d207124648ea63cfe7.webp);        /* ← below it */

  background-repeat:
    no-repeat,                    /* earth only once */
    repeat;                       /* tile the stars */

  background-position:
    center center,                /* earth centered */
    center center;                /* stars centered (tiles anyway) */

  background-size:
    contain,                      /* earth scales to fit */
    auto;                         /* stars at native size */

  /* fallback if images missing */
  background-color: #000;

  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}



@media screen and (max-width: 996px) {
  .heroBanner_qdFl {
    padding: 2rem;
  }
}

.buttons_AeoN {
  display: flex;
  align-items: center;
  justify-content: center;
}

.font-face-kg_aoiP {
  font-family: "Kaala Glyph";
}



.heroBanner_qdFl {
  position: relative;
}

.heroBanner_qdFl .button--secondary {
  /* 1) Remove width:50% and padding override */
  width: auto;
  padding: 0.5rem 1rem;

  /* 2) Center absolutely in the hero, moved down further */
  position: absolute;
  top: calc(50% + 100px);
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  transform-origin: center center;

  /* 3) Keep the translucent look */
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(5px);

  /* 4) Legible text */
  color: #fff;
  text-align: center;
}

/* Move the title to the top-left */
.heroBanner_qdFl .hero__title {
  position: absolute;
  top: 2rem;      /* distance from the top of the hero */
  left: 2rem;     /* distance from the left edge */
  margin: 0;      /* remove any default margin */
  text-align: left;
  z-index: 2;     /* sits above the background */
}

/* Move the subtitle just below it */
.heroBanner_qdFl .hero__subtitle {
  position: absolute;
  top: 5.5rem;    /* tweak so it sits nicely under the title */
  left: 2rem;
  margin: 0;
  text-align: left;
  z-index: 2;
}

.heroBanner_qdFl .hero__title {
  color: #0ca2c8;  /* or any bright-blue hex you like */
}
.heroBanner_qdFl .hero__subtitle {
  color: #086a83  /* or any bright-blue hex you like */
}

.heroLogo_U6bI {
  width: 200px;
  height: auto;
  margin-bottom: 2rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  animation: float_x2Lw 3s ease-in-out infinite;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@keyframes float_x2Lw {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media screen and (max-width: 996px) {
  .heroLogo_U6bI {
    width: 150px;
  }
}

/* Chart section styles */
.chartSection_QBwz {
  padding: 4rem 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
  margin: 2rem 0;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.chartSection_QBwz::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(/assets/images/red_leather_texture-b806ab8e3effac3f774139a5a3dd87d2.jpg);
  opacity: 0.1;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}

.chartSection_QBwz > * {
  position: relative;
  z-index: 1;
}

.chartSectionTitle_oDK3 {
  font-family: var(--ifm-heading-font-family);
  font-size: 2.5rem;
  color: var(--ifm-color-primary);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
}

.chartSectionDescription_tAER {
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 2rem;
  color: var(--ifm-font-color-base);
}

.chartButtonContainer_E2d_ {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.chartSectionImage_Yd3L {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 0 auto 2rem;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

[data-theme='light'] .chartSection_QBwz {
  background: linear-gradient(135deg, rgba(255, 248, 231, 0.9) 0%, rgba(255, 228, 181, 0.8) 100%);
}

[data-theme='light'] .chartSection_QBwz::before {
  background-image: none;
}

@media screen and (max-width: 768px) {
  .chartSectionTitle_oDK3 {
    font-size: 2rem;
  }
  
  .chartSectionDescription_tAER {
    font-size: 1.1rem;
    margin: 0 auto 1.5rem;
  }
}
/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.title_f1Hy {
  font-size: 3rem;
}

/**
  Blog post title should be smaller on smaller devices
**/
@media (max-width: 576px) {
  .title_f1Hy {
    font-size: 2rem;
  }
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.container_mt6G {
  font-size: 0.9rem;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

[data-theme='dark'] .githubSvg_Uu4N {
  fill: var(--light);
}

[data-theme='light'] .githubSvg_Uu4N {
  fill: var(--dark);
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

[data-theme='dark'] .xSvg_y3PF {
  fill: var(--light);
}

[data-theme='light'] .xSvg_y3PF {
  fill: var(--dark);
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

[data-theme='dark'] .linkedinSvg_FCgI {
  fill: var(--light);
}

[data-theme='light'] .linkedinSvg_FCgI {
  fill: var(--dark);
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

[data-theme='dark'] .blueskySvg_AzZw {
  fill: var(--light);
}

[data-theme='light'] .blueskySvg_AzZw {
  fill: var(--dark);
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

[data-theme='dark'] .instagramSvg_YC40 {
  fill: var(--light);
}

[data-theme='light'] .instagramSvg_YC40 {
  fill: var(--dark);
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

[data-theme='dark'] .threadsSvg_PTXY {
  fill: var(--light);
}

[data-theme='light'] .threadsSvg_PTXY {
  fill: var(--dark);
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

:root {
  --docusaurus-blog-social-icon-size: 1rem;
}

.authorSocials_rSDt {
  /*
  This ensures that container takes height even if there's no social link
  This keeps author names aligned even if only some have socials
   */
  height: var(--docusaurus-blog-social-icon-size);

  display: flex;
  flex-wrap: wrap;
  align-items: center;
  line-height: 0;
  overflow: hidden;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.authorSocialLink_owbf {
  height: var(--docusaurus-blog-social-icon-size);
  width: var(--docusaurus-blog-social-icon-size);
  line-height: 0;
  margin-right: 0.4rem;
}

.authorSocialIcon_XYv3 {
  width: var(--docusaurus-blog-social-icon-size);
  height: var(--docusaurus-blog-social-icon-size);
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.authorImage_XqGP {
  --ifm-avatar-photo-size: 3.6rem;
}

.author-as-h1_n9oJ .authorImage_XqGP {
  --ifm-avatar-photo-size: 7rem;
}

.author-as-h2_gXvM .authorImage_XqGP {
  --ifm-avatar-photo-size: 5.4rem;
}

.authorDetails_lV9A {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-around;
}

.authorName_yefp {
  font-size: 1.1rem;
  line-height: 1.1rem;
  display: flex;
  flex-direction: row;
}

.author-as-h1_n9oJ .authorName_yefp {
  font-size: 2.4rem;
  line-height: 2.4rem;
  display: inline;
}

.author-as-h2_gXvM .authorName_yefp {
  font-size: 1.4rem;
  line-height: 1.4rem;
  display: inline;
}

.authorTitle_nd0D {
  font-size: 0.8rem;
  line-height: 1rem;
  display: -webkit-box;
  overflow: hidden;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.author-as-h1_n9oJ .authorTitle_nd0D {
  font-size: 1.2rem;
  line-height: 1.6rem;
}

.author-as-h2_gXvM .authorTitle_nd0D {
  font-size: 1rem;
  line-height: 1.3rem;
}

.authorBlogPostCount_iiJ5 {
  background: var(--ifm-color-secondary);
  color: var(--ifm-color-black);
  font-size: 0.8rem;
  line-height: 1.2;
  border-radius: var(--ifm-global-radius);
  padding: 0.1rem 0.4rem;
  margin-left: 0.3rem;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.authorListItem_n3yI {
  list-style-type: none;
  margin-bottom: 2rem;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.authorCol_Hf19 {
  max-width: inherit !important;
}

.imageOnlyAuthorRow_pa_O {
  display: flex;
  flex-flow: row wrap;
}

.imageOnlyAuthorCol_G86a {
  margin-left: 0.3rem;
  margin-right: 0.3rem;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.codeBlockContainer_Ckt0 {
  background: var(--prism-background-color);
  color: var(--prism-color);
  margin-bottom: var(--ifm-leading);
  box-shadow: var(--ifm-global-shadow-lw);
  border-radius: var(--ifm-code-border-radius);
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.codeBlock_bY9V {
  --ifm-pre-background: var(--prism-background-color);
  margin: 0;
  padding: 0;
}

.codeBlockStandalone_MEMb {
  padding: 0;
}

.codeBlockLines_e6Vv {
  font: inherit;
  /* rtl:ignore */
  float: left;
  min-width: 100%;
  padding: var(--ifm-pre-padding);
}

.codeBlockLinesWithNumbering_o6Pm {
  display: table;
  padding: var(--ifm-pre-padding) 0;
}

@media print {
  .codeBlockLines_e6Vv {
    white-space: pre-wrap;
  }
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

/* Intentionally has zero specificity, so that to be able to override
the background in custom CSS file due bug https://github.com/facebook/docusaurus/issues/3678 */
:where(:root) {
  --docusaurus-highlighted-code-line-bg: rgb(72 77 91);
}

:where([data-theme='dark']) {
  --docusaurus-highlighted-code-line-bg: rgb(100 100 100);
}

.theme-code-block-highlighted-line {
  background-color: var(--docusaurus-highlighted-code-line-bg);
  display: block;
  margin: 0 calc(-1 * var(--ifm-pre-padding));
  padding: 0 var(--ifm-pre-padding);
}

.codeLine_lJS_ {
  display: table-row;
  counter-increment: line-count;
}

.codeLineNumber_Tfdd {
  display: table-cell;
  text-align: right;
  width: 1%;
  position: sticky;
  left: 0;
  padding: 0 var(--ifm-pre-padding);
  background: var(--ifm-pre-background);
  overflow-wrap: normal;
}

.codeLineNumber_Tfdd::before {
  content: counter(line-count);
  opacity: 0.4;
}

.theme-code-block-highlighted-line .codeLineNumber_Tfdd::before {
  opacity: 0.8;
}

.codeLineContent_feaV {
  padding-right: var(--ifm-pre-padding);
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.theme-code-block:hover .copyButtonCopied_Vdqa {
  opacity: 1 !important;
}

.copyButtonIcons_IEyt {
  position: relative;
  width: 1.125rem;
  height: 1.125rem;
}

.copyButtonIcon_TrPX,
.copyButtonSuccessIcon_cVMy {
  position: absolute;
  top: 0;
  left: 0;
  fill: currentColor;
  opacity: inherit;
  width: inherit;
  height: inherit;
  transition: all var(--ifm-transition-fast) ease;
}

.copyButtonSuccessIcon_cVMy {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.33);
  opacity: 0;
  color: #00d600;
}

.copyButtonCopied_Vdqa .copyButtonIcon_TrPX {
  transform: scale(0.33);
  opacity: 0;
}

.copyButtonCopied_Vdqa .copyButtonSuccessIcon_cVMy {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  transition-delay: 0.075s;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.wordWrapButtonIcon_b1P5 {
  width: 1.2rem;
  height: 1.2rem;
}

.wordWrapButtonEnabled_uzNF .wordWrapButtonIcon_b1P5 {
  color: var(--ifm-color-primary);
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.buttonGroup_M5ko {
  display: flex;
  column-gap: 0.2rem;
  position: absolute;
  /* rtl:ignore */
  right: calc(var(--ifm-pre-padding) / 2);
  top: calc(var(--ifm-pre-padding) / 2);
}

.buttonGroup_M5ko button {
  display: flex;
  align-items: center;
  background: var(--prism-background-color);
  color: var(--prism-color);
  border: 1px solid var(--ifm-color-emphasis-300);
  border-radius: var(--ifm-global-radius);
  padding: 0.4rem;
  line-height: 0;
  transition: opacity var(--ifm-transition-fast) ease-in-out;
  opacity: 0;
}

.buttonGroup_M5ko button:focus-visible,
.buttonGroup_M5ko button:hover {
  opacity: 1 !important;
}

.theme-code-block:hover .buttonGroup_M5ko button {
  opacity: 0.4;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.codeBlockContent_QJqH {
  position: relative;
  /* rtl:ignore */
  direction: ltr;
  border-radius: inherit;
}

.codeBlockTitle_OeMC {
  border-bottom: 1px solid var(--ifm-color-emphasis-300);
  font-size: var(--ifm-code-font-size);
  font-weight: 500;
  padding: 0.75rem var(--ifm-pre-padding);
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.codeBlockTitle_OeMC + .codeBlockContent_QJqH .codeBlock_a8dz {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

:root {
  --docusaurus-tag-list-border: var(--ifm-color-emphasis-300);
}

.tag_zVej {
  border: 1px solid var(--docusaurus-tag-list-border);
  transition: border var(--ifm-transition-fast);
}

.tag_zVej:hover {
  --docusaurus-tag-list-border: var(--ifm-link-color);
  -webkit-text-decoration: none;
  text-decoration: none;
}

.tagRegular_sFm0 {
  border-radius: var(--ifm-global-radius);
  padding: 0.2rem 0.5rem 0.3rem;
  font-size: 90%;
}

.tagWithCount_h2kH {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 0.5rem 0 1rem;
  border-left: 0;
}

.tagWithCount_h2kH::before,
.tagWithCount_h2kH::after {
  content: '';
  position: absolute;
  top: 50%;
  border: 1px solid var(--docusaurus-tag-list-border);
  transition: inherit;
}

.tagWithCount_h2kH::before {
  right: 100%;
  transform: translate(50%, -50%) rotate(-45deg);
  width: 1.18rem;
  height: 1.18rem;
  border-right: 0;
  border-bottom: 0;
}

.tagWithCount_h2kH::after {
  left: 0;
  transform: translateY(-50%);
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}

.tagWithCount_h2kH span {
  background: var(--ifm-color-secondary);
  color: var(--ifm-color-black);
  font-size: 0.7rem;
  line-height: 1.2;
  border-radius: var(--ifm-global-radius);
  padding: 0.1rem 0.4rem;
  margin-left: 0.3rem;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.tag_Nnez {
  display: inline-block;
  margin: 0.5rem 0.5rem 0 1rem;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

/*
CSS variables, meant to be overridden by final theme
 */
.details_lb9f {
  --docusaurus-details-summary-arrow-size: 0.38rem;
  --docusaurus-details-transition: transform 200ms ease;
  --docusaurus-details-decoration-color: grey;
}

.details_lb9f > summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding-left: 1rem;
}

/* TODO: deprecation, need to remove this after Safari will support `::marker` */
.details_lb9f > summary::-webkit-details-marker {
  display: none;
}

.details_lb9f > summary::before {
  position: absolute;
  top: 0.45rem;
  left: 0;

  /* CSS-only Arrow */
  content: '';
  border-width: var(--docusaurus-details-summary-arrow-size);
  border-style: solid;
  border-color: transparent transparent transparent
    var(--docusaurus-details-decoration-color);

  /* Arrow rotation anim */
  transform: rotate(0deg);
  transition: var(--docusaurus-details-transition);
  transform-origin: calc(var(--docusaurus-details-summary-arrow-size) / 2) 50%;
}

/* When JS disabled/failed to load: we use the open property for arrow animation: */
.details_lb9f[open]:not(.isBrowser_bmU9) > summary::before,

.details_lb9f[data-collapsed='false'].isBrowser_bmU9 > summary::before {
  transform: rotate(90deg);
}

.collapsibleContent_i85q {
  margin-top: 1rem;
  border-top: 1px solid var(--docusaurus-details-decoration-color);
  padding-top: 1rem;
}

.collapsibleContent_i85q p:last-child {
  margin-bottom: 0;
}

.details_lb9f > summary > p:last-child {
  margin-bottom: 0;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.tags_jXut {
  display: inline;
}

.tag_QGVx {
  margin: 0 0.4rem 0.5rem 0;
  display: inline-block;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.iconEdit_Z9Sw {
  margin-right: 0.3em;
  vertical-align: sub;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.details_b_Ee {
  --docusaurus-details-decoration-color: var(--ifm-alert-border-color);
  --docusaurus-details-transition: transform var(--ifm-transition-fast) ease;
  margin: 0 0 var(--ifm-spacing-vertical);
  border: 1px solid var(--ifm-alert-border-color);
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.lastUpdated_JAkA {
  font-size: smaller;
  font-style: italic;
  margin-top: 0.2rem;
}

@media (min-width: 997px) {
  .lastUpdated_JAkA {
    text-align: right;
  }
}

@media print {
  .noPrint_WFHX {
    display: none;
  }
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.tocCollapsibleButton_TO0P {
  font-size: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0.8rem;
  width: 100%;
}

.tocCollapsibleButton_TO0P::after {
  content: '';
  background: var(--ifm-menu-link-sublist-icon) 50% 50% / 2rem 2rem no-repeat;
  filter: var(--ifm-menu-link-sublist-icon-filter);
  height: 1.25rem;
  width: 1.25rem;
  transform: rotate(180deg);
  transition: transform var(--ifm-transition-fast);
}

.tocCollapsibleButtonExpanded_MG3E::after {
  transform: none;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.tocCollapsible_ETCw {
  background-color: var(--ifm-menu-color-background-active);
  border-radius: var(--ifm-global-radius);
  margin: 1rem 0;
}

.tocCollapsibleContent_vkbj > ul {
  border-left: none;
  border-top: 1px solid var(--ifm-color-emphasis-300);
  padding: 0.2rem 0;
  font-size: 15px;
}

.tocCollapsibleContent_vkbj ul li {
  margin: 0.4rem 0.8rem;
}

.tocCollapsibleContent_vkbj a {
  display: block;
}

.tocCollapsibleExpanded_sAul {
  transform: none;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

@media (min-width: 997px) {
  /* Prevent hydration FOUC, as the mobile TOC needs to be server-rendered */
  .tocMobile_ITEo {
    display: none;
  }
}

@media print {
  .tocMobile_ITEo {
    display: none;
  }
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.containsTaskList_mC6p {
  list-style: none;
}

:not(.containsTaskList_mC6p > li) > .containsTaskList_mC6p {
  padding-left: 0;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.img_ev3q {
  height: auto;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.admonition_xJq3 {
  margin-bottom: 1em;
}

.admonitionHeading_Gvgb {
  font: var(--ifm-heading-font-weight) var(--ifm-h5-font-size) /
    var(--ifm-heading-line-height) var(--ifm-heading-font-family);
  text-transform: uppercase;
}

/* Heading alone without content (does not handle fragment content) */
.admonitionHeading_Gvgb:not(:last-child) {
  margin-bottom: 0.3rem;
}

.admonitionHeading_Gvgb code {
  text-transform: none;
}

.admonitionIcon_Rf37 {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.4em;
}

.admonitionIcon_Rf37 svg {
  display: inline-block;
  height: 1.6em;
  width: 1.6em;
  fill: var(--ifm-alert-foreground-color);
}

.admonitionContent_BuS1 > :last-child {
  margin-bottom: 0;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.tableOfContents_bqdL {
  max-height: calc(100vh - (var(--ifm-navbar-height) + 2rem));
  overflow-y: auto;
  position: sticky;
  top: calc(var(--ifm-navbar-height) + 1rem);
}

@media (max-width: 996px) {
  .tableOfContents_bqdL {
    display: none;
  }

  .docItemContainer_F8PC {
    padding: 0 0.3rem;
  }
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.container_lyt7 {
  max-width: 100%;
}

.container_lyt7 > svg {
  max-width: 100%;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.breadcrumbHomeIcon_YNFT {
  position: relative;
  top: 1px;
  vertical-align: top;
  height: 1.1rem;
  width: 1.1rem;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.breadcrumbsContainer_Z_bl {
  --ifm-breadcrumb-size-multiplier: 0.8;
  margin-bottom: 0.8rem;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

@media (min-width: 997px) {
  .generatedIndexPage_vN6x {
    max-width: 75% !important;
  }
}

/* Duplicated from .markdown h1 */
.title_kItE {
  --ifm-h1-font-size: 3rem;
  margin-bottom: calc(1.25 * var(--ifm-leading));
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.docItemContainer_Djhp header + *,
.docItemContainer_Djhp article > *:first-child {
  margin-top: 0;
}

@media (min-width: 997px) {
  .docItemCol_VOVn {
    max-width: 75% !important;
  }
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.mdxPageWrapper_j9I6 {
  justify-content: center;
}

