@charset "UTF-8";
@font-face {
  font-family: "IBM Plex Mono";
  src: url("/static/fonts/main/IBM_Plex_Mono/IBMPlexMono-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("/static/fonts/main/IBM_Plex_Mono/IBMPlexMono-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("/static/fonts/main/IBM_Plex_Mono/IBMPlexMono-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Segoe UI";
  src: url("/static/fonts/main/Segoe_UI/Segoe-UI.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Segoe UI";
  src: url("/static/fonts/main/Segoe_UI/Segoe-UI_Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Segoe UI";
  src: url("/static/fonts/main/Segoe_UI/Segoe-UI_Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: none;
}

a {
  color: inherit;
}

ul,
ol {
  list-style: none;
}

html {
  min-height: 100%;
  font-size: 16px;
  background: #171a1f;
  color: #f6faf9;
}
@media (min-width: 768px) {
  html {
    font-size: 17px;
  }
}
@media (min-width: 1024px) {
  html {
    font-size: 18px;
  }
}
@media (min-width: 1280px) {
  html {
    font-size: 19px;
  }
}
@media (min-width: 1536px) {
  html {
    font-size: 20px;
  }
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #171a1f;
  color: #f6faf9;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 400;
  line-height: 1.45;
}

.main_content {
  flex: 1;
  width: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 5.5rem 1rem 2rem;
}

.main_footer {
  width: 100%;
  margin-top: auto;
  padding: 1.25rem 1rem;
  background: rgba(0, 0, 0, 0.5);
  color: #f6faf9;
  text-align: center;
}

::selection {
  background: #bb86fc;
  color: #171a1f;
}

.page_title {
  color: #f6faf9;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.section_title {
  color: #f6faf9;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}

.subsection_title {
  color: #bb86fc;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.body_text {
  color: #f6faf9;
  font-size: 1rem;
  line-height: 1.5;
}

.meta_text {
  color: rgba(246, 250, 249, 0.55);
  font-size: 0.8rem;
  line-height: 1.4;
}

.muted_text {
  color: rgba(246, 250, 249, 0.55);
}

.gold_text {
  color: #ffd700;
}

.accent_text {
  color: #bb86fc;
}

.success_text {
  color: #018d6b;
}

.danger_text {
  color: #ad3324;
}

.warning_text {
  color: #f39c12;
}

.info_text {
  color: #4e8fff;
}

.split_grid {
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.split_grid > * {
  min-width: 0;
}

@media (min-width: 1024px) {
  .split_grid_66_33 {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  }
}

@media (min-width: 1024px) {
  .split_grid_33_66 {
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  }
}

@media (min-width: 1024px) {
  .split_grid_75_25 {
    grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
  }
}

@media (min-width: 1024px) {
  .split_grid_25_75 {
    grid-template-columns: minmax(0, 1fr) minmax(0, 3fr);
  }
}

@media (min-width: 1024px) {
  .split_grid_50_50 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .split_grid_25_25_25_25 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .split_grid_25_25_25_25 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.content_section {
  width: 100%;
  max-width: 56rem;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.5rem;
  background: rgba(0, 0, 0, 0.2);
}

.content_section_wide {
  max-width: 100%;
}

.content_section_narrow {
  max-width: 26rem;
}

.content_section > * {
  min-width: 0;
}

.content_component_grid {
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .content_component_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .content_component_grid_3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.content_component_col {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.content_inline_row {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.content_divider {
  width: 100%;
  min-width: 0;
  height: 1px;
  margin: 1rem auto;
  border: 0;
}

.content_divider_dotted {
  border-bottom: 1px dotted rgba(187, 134, 252, 0.35);
}

.content_divider_glow {
  height: 0.25rem;
  background: radial-gradient(ellipse at center, rgba(187, 134, 252, 0.38) 0%, rgba(187, 134, 252, 0.18) 35%, rgba(187, 134, 252, 0.05) 62%, transparent 78%);
}

.content_divider_compact {
  margin-block: 0.75rem;
}

.content_divider_large {
  margin-block: 1.5rem;
}

.pnl_block,
.outcome_block {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid #bb86fc;
  border-radius: 0.5rem;
  background: rgba(0, 0, 0, 0.18);
}

.pnl_block_header,
.outcome_block_header {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px dotted rgba(187, 134, 252, 0.3);
}

.pnl_block_title,
.outcome_block_title {
  color: rgba(246, 250, 249, 0.55);
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pnl_market {
  min-width: 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.pnl_symbol {
  min-width: 0;
  color: #f6faf9;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pnl_price_group {
  min-width: 0;
  display: inline-flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 0.5rem;
  text-align: right;
}

.pnl_price_label {
  color: rgba(246, 250, 249, 0.55);
  font-size: 0.6rem;
}

.pnl_price {
  color: #ffd700;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.pnl_values,
.outcome_values {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.pnl_value_unit,
.outcome_value_unit {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.75rem;
  border-radius: 0.25rem;
  background: rgba(255, 255, 255, 0.025);
}

.pnl_value_label,
.outcome_value_label {
  color: rgba(246, 250, 249, 0.55);
  font-size: 0.58rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.pnl_value,
.outcome_value {
  color: #f6faf9;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.outcome_block {
  align-items: stretch;
}

.outcome_block_header {
  justify-content: center;
}

.outcome_block_title {
  text-align: center;
}

.outcome_values {
  max-width: 32rem;
  width: 100%;
  align-self: center;
}

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

.pnl_block.is_positive,
.outcome_block.is_positive {
  border-left-color: #018d6b;
}
.pnl_block.is_positive .pnl_value,
.pnl_block.is_positive .outcome_value,
.outcome_block.is_positive .pnl_value,
.outcome_block.is_positive .outcome_value {
  color: #018d6b;
}

.pnl_block.is_negative,
.outcome_block.is_negative {
  border-left-color: #ad3324;
}
.pnl_block.is_negative .pnl_value,
.pnl_block.is_negative .outcome_value,
.outcome_block.is_negative .pnl_value,
.outcome_block.is_negative .outcome_value {
  color: #ad3324;
}

.pnl_block.is_neutral,
.outcome_block.is_neutral {
  border-left-color: rgba(246, 250, 249, 0.55);
}
.pnl_block.is_neutral .pnl_value,
.pnl_block.is_neutral .outcome_value,
.outcome_block.is_neutral .pnl_value,
.outcome_block.is_neutral .outcome_value {
  color: rgba(246, 250, 249, 0.78);
}

.pnl_block.is_error,
.outcome_block.is_error {
  border-left-color: #ff0000;
}
.pnl_block.is_error .pnl_value,
.pnl_block.is_error .outcome_value,
.outcome_block.is_error .pnl_value,
.outcome_block.is_error .outcome_value {
  color: #ff0000;
}

.pnl_block.is_updated,
.outcome_block.is_updated {
  animation: pnl_update_flash 0.45s ease;
}

@keyframes pnl_update_flash {
  0% {
    background: rgba(187, 134, 252, 0.14);
  }
  100% {
    background: rgba(0, 0, 0, 0.18);
  }
}
@media (max-width: 480px) {
  .pnl_market {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .pnl_price_group {
    justify-content: flex-start;
    text-align: left;
  }
  .pnl_values,
  .outcome_values {
    grid-template-columns: 1fr;
  }
  .outcome_value_unit {
    align-items: flex-start;
    text-align: left;
  }
}
.pagination {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: rgba(246, 250, 249, 0.78);
}

.pagination_info {
  color: rgba(246, 250, 249, 0.55);
  font-size: 0.68rem;
  line-height: 1.35;
  text-align: center;
}

.pagination_nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pagination_link,
.pagination_ellipsis {
  min-width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.55rem;
  border: 1px solid rgba(187, 134, 252, 0.35);
  border-radius: 0.25rem;
  background: rgba(0, 0, 0, 0.16);
  color: #bb86fc;
  font-size: 0.75rem;
  line-height: 1;
  text-decoration: none;
  user-select: none;
}

.pagination_link {
  cursor: pointer;
  transition: border-color 0.15s ease-in-out, background-color 0.15s ease-in-out, color 0.15s ease-in-out, opacity 0.15s ease-in-out;
}
.pagination_link:hover, .pagination_link:focus-visible {
  border-color: rgba(255, 215, 0, 0.55);
  color: #ffd700;
  background: rgba(255, 255, 255, 0.035);
}

.pagination_link_current {
  border-color: #bb86fc;
  background: #bb86fc;
  color: #171a1f;
  cursor: default;
  pointer-events: none;
}

.pagination_link_disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.pagination_ellipsis {
  border-color: transparent;
  background: transparent;
  color: rgba(246, 250, 249, 0.55);
}

.pagination_jump {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  color: rgba(246, 250, 249, 0.55);
  font-size: 0.68rem;
}

.pagination_jump_label {
  color: rgba(246, 250, 249, 0.55);
}

.pagination_jump_input {
  width: 4.5rem;
  padding: 0.25rem 0.35rem;
  border: none;
  border-bottom: 1px solid #bb86fc;
  border-radius: 0;
  background: transparent;
  color: #bb86fc;
  font: inherit;
  font-size: 0.75rem;
  text-align: center;
  outline: none;
  transition: border-color 0.15s ease-in-out, color 0.15s ease-in-out;
}
.pagination_jump_input:focus {
  border-bottom-color: #ffd700;
  color: #ffd700;
}

.pagination_jump_button {
  width: auto;
  min-width: 3rem;
  padding: 0.35rem 0.65rem;
  font-size: 0.65rem;
}

.top_nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  padding: 0.6rem 0;
  background: rgba(23, 26, 31, 0.8);
  backdrop-filter: blur(10px);
  transition: background 0.4s ease-in-out;
}

.nav_container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav_brand {
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav_logo {
  display: flex;
  align-items: center;
}
.nav_logo img {
  height: 50px;
  width: auto;
}

.nav_user {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.05rem;
  line-height: 1.1;
}

.nav_username {
  color: #f6faf9;
  font-size: 0.75rem;
}

.nav_logout {
  color: rgba(246, 250, 249, 0.55);
  font-size: 0.6rem;
  text-decoration: none;
  transition: color 0.15s ease-in-out;
}
.nav_logout:hover, .nav_logout:focus-visible {
  color: #ffd700;
}

.nav_balance {
  display: flex;
  flex-direction: column;
  margin-right: auto;
}

.desktop_nav {
  display: none;
  align-items: center;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .desktop_nav {
    display: flex;
  }
}

.nav_item {
  position: relative;
}

.nav_link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  border: none;
  color: #f6faf9;
  font: inherit;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.4s ease-in-out;
}
.nav_link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 1px;
  background: #f6faf9;
  transition: width 0.4s ease-in-out;
}
.nav_link:hover::after, .nav_link:focus-visible::after {
  width: 100%;
}

.nav_item_has_subnav:hover > .nav_link::after,
.nav_item_has_subnav:focus-within > .nav_link::after {
  width: 100%;
}

.desktop_subnav {
  position: absolute;
  top: 100%;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  white-space: nowrap;
  padding: 1rem 0 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  border-radius: 0.5rem;
  z-index: 2000;
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out, transform 0.4s ease-in-out;
}
.desktop_subnav a,
.desktop_subnav button {
  position: relative;
  width: max-content;
  padding: 0;
  background: none;
  border: none;
  color: #f6faf9;
  font: inherit;
  text-decoration: none;
  text-align: left;
  white-space: nowrap;
  cursor: pointer;
}
.desktop_subnav a::after,
.desktop_subnav button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 1px;
  background: #f6faf9;
  transition: width 0.4s ease-in-out;
}
.desktop_subnav a:hover::after, .desktop_subnav a:focus-visible::after,
.desktop_subnav button:hover::after,
.desktop_subnav button:focus-visible::after {
  width: 100%;
}

.nav_item_has_subnav:hover > .desktop_subnav,
.nav_item_has_subnav:focus-within > .desktop_subnav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.menu_icon {
  position: relative;
  z-index: 1001;
  display: block;
  width: 40px;
  height: 40px;
  margin-left: auto;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .menu_icon {
    display: none;
  }
}

.hamburger {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 3px;
  background: #f6faf9;
  transform: translate(-50%, -50%);
  transition: all 0.25s ease-in-out;
}
.hamburger::before, .hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 30px;
  height: 3px;
  background: #f6faf9;
  transition: all 0.25s ease-in-out;
}
.hamburger::before {
  top: -10px;
}
.hamburger::after {
  top: 10px;
}

.menu_icon.is_open .hamburger {
  background: transparent;
}
.menu_icon.is_open .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}
.menu_icon.is_open .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile_nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(15px);
  transform: translateY(-100%);
  transition: transform 0.4s ease-in-out;
}

.mobile_nav.is_open {
  transform: translateY(0);
}

.mobile_nav_links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.mobile_nav_links li {
  text-align: center;
}

.mobile_nav_link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  background: none;
  border: none;
  color: #f6faf9;
  font: inherit;
  font-size: 1.25rem;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.4s ease-in-out;
}
.mobile_nav_link:hover, .mobile_nav_link:focus-visible {
  color: #ffd700;
}

.mobile_subnav {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out, margin-top 0.4s ease-in-out;
}
.mobile_subnav a,
.mobile_subnav button {
  display: block;
  width: 100%;
  margin: 1rem 0;
  padding: 0;
  background: none;
  border: none;
  color: #f6faf9;
  font: inherit;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.15s ease-in-out;
}
.mobile_subnav a:hover, .mobile_subnav a:focus-visible,
.mobile_subnav button:hover,
.mobile_subnav button:focus-visible {
  color: #ffd700;
}

.mobile_nav_item_has_subnav.is_open > .mobile_nav_link {
  color: #ffd700;
}
.mobile_nav_item_has_subnav.is_open > .mobile_subnav {
  max-height: 600px;
  opacity: 1;
  margin-top: 0.5rem;
  border-top: 1px solid #ffd700;
  border-bottom: 1px solid #ffd700;
  border-radius: 0.25rem;
}

body.is_scroll_locked {
  overflow: hidden;
}

.button {
  width: 100%;
  padding: 0.5rem;
  border: none;
  border-radius: 0.25rem;
  color: #f6faf9;
  font: inherit;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.15s ease-in-out;
}
.button:disabled, .button.is_disabled {
  cursor: default;
  opacity: 0.45;
}

.button_green {
  background: #018d6b;
}

.button_red {
  background: #ad3324;
}

.button_purple {
  background: #bb86fc;
}

.button_gray {
  background: #333;
}

.button_orange {
  background: #f39c12;
}

.button_blue {
  background: #4e8fff;
}

.form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0.25rem;
}

.form_field {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.form_field.is_disabled .form_label {
  color: rgba(246, 250, 249, 0.55);
  opacity: 0.7;
}

.form_label {
  color: #f6faf9;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  transition: color 0.15s ease-in-out, opacity 0.15s ease-in-out;
}

.form_input {
  width: 100%;
  padding: 0.25rem 0.5rem;
  background: none;
  border: none;
  border-bottom: 1px solid #bb86fc;
  border-radius: 0;
  outline: none;
  color: #bb86fc;
  font: inherit;
  font-size: 1.25rem;
  text-align: center;
  transition: color 0.15s ease-in-out, border-color 0.15s ease-in-out, opacity 0.15s ease-in-out;
}
.form_input::placeholder {
  color: #bb86fc;
  opacity: 0.3;
}
.form_input:focus {
  border-bottom-color: #ffd700;
  color: #ffd700;
}
.form_input:focus::placeholder {
  color: #ffd700;
  opacity: 0.3;
}
.form_input:disabled, .form_input.is_disabled {
  border-bottom-color: #333;
  color: rgba(246, 250, 249, 0.55);
  opacity: 0.65;
  cursor: not-allowed;
}
.form_input:disabled::placeholder, .form_input.is_disabled::placeholder {
  color: rgba(246, 250, 249, 0.55);
  opacity: 0.45;
}
.form_input.is_invalid {
  border-bottom-color: #f39c12;
  color: #f39c12;
}

.form_input::-webkit-outer-spin-button,
.form_input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.form_input[type=number] {
  -moz-appearance: textfield;
}

.form_input[type=datetime-local] {
  color-scheme: dark;
}

.choice_field {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.choice_group_label {
  color: #f6faf9;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
}

.choice_chip_group {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #bb86fc;
  transition: border-color 0.15s ease-in-out;
}
.choice_chip_group:hover {
  border-bottom-color: #ffd700;
}

.choice_chip_input {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  opacity: 0;
}

.choice_chip_label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 1.8rem;
  padding: 0.2rem 0.55rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #bb86fc;
  font-size: 1.25rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  user-select: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.choice_chip_input:not(:checked) + .choice_chip_label:hover {
  border-color: #ffd700;
  color: #ffd700;
}

.choice_chip_input[type=radio]:checked + .choice_chip_label {
  background: #bb86fc;
  color: #171a1f;
}

.choice_chip_group:hover .choice_chip_input[type=radio]:checked + .choice_chip_label {
  background: #ffd700;
  color: #171a1f;
}

.choice_chip_input[type=radio]:focus-visible + .choice_chip_label {
  border-color: #ffd700;
  color: #ffd700;
}

.choice_chip_input[type=checkbox] + .choice_chip_label::before {
  content: "✓";
  width: 0.85em;
  display: inline-flex;
  justify-content: center;
  font-size: 0.8em;
  font-weight: 700;
  line-height: 1;
  opacity: 0.25;
  transition: opacity 0.15s ease-in-out;
}

.choice_chip_input[type=checkbox]:checked + .choice_chip_label {
  background: #bb86fc;
  color: #171a1f;
}

.choice_chip_input[type=checkbox]:checked + .choice_chip_label::before {
  opacity: 1;
}

.choice_chip_group:hover .choice_chip_input[type=checkbox]:checked + .choice_chip_label {
  background: #ffd700;
  color: #171a1f;
}

.choice_chip_input[type=checkbox]:focus-visible + .choice_chip_label {
  border-color: #ffd700;
  color: #ffd700;
}

.choice_classic_group {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #bb86fc;
  transition: border-color 0.15s ease-in-out;
}
.choice_classic_group:hover {
  border-bottom-color: #ffd700;
}

.choice_classic_option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  color: #bb86fc;
  font-size: 1rem;
  cursor: pointer;
  user-select: none;
  transition: color 0.15s ease-in-out;
}
.choice_classic_option:hover {
  color: #ffd700;
}

.choice_classic_input {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  opacity: 0;
}

.choice_classic_control {
  position: relative;
  width: 1rem;
  height: 1rem;
  flex: 0 0 1rem;
  border: 1px solid #bb86fc;
  transition: border-color 0.15s ease-in-out, background-color 0.15s ease-in-out;
}

.choice_classic_input[type=radio] + .choice_classic_control {
  border-radius: 50%;
}

.choice_classic_input[type=radio]:checked + .choice_classic_control {
  border-color: #bb86fc;
}

.choice_classic_input[type=radio]:checked + .choice_classic_control::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #bb86fc;
  transform: translate(-50%, -50%);
  transition: background-color 0.15s ease-in-out;
}

.choice_classic_option:hover .choice_classic_input[type=radio]:checked + .choice_classic_control {
  border-color: #ffd700;
  transition: border-color 0.15s ease-in-out;
}
.choice_classic_option:hover .choice_classic_input[type=radio]:checked + .choice_classic_control::after {
  background: #ffd700;
  transition: background-color 0.15s ease-in-out;
}

.choice_classic_input[type=checkbox] + .choice_classic_control {
  border-radius: 0.2rem;
}

.choice_classic_input[type=checkbox]:checked + .choice_classic_control {
  border-color: #bb86fc;
  background: #bb86fc;
}

.choice_classic_input[type=checkbox]:checked + .choice_classic_control::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  color: #171a1f;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
  transform: translate(-50%, -53%);
}

.choice_classic_input:focus-visible + .choice_classic_control {
  border-color: #ffd700;
}

.choice_classic_option:hover .choice_classic_control {
  border-color: #ffd700;
}
.choice_classic_option:hover .choice_classic_input[type=checkbox]:checked + .choice_classic_control {
  background: #ffd700;
  border-color: #ffd700;
}

.choice_field.is_disabled .choice_group_label,
.choice_field.is_disabled .choice_chip_label,
.choice_field.is_disabled .choice_classic_option {
  color: rgba(246, 250, 249, 0.55);
  cursor: not-allowed;
  opacity: 0.7;
}
.choice_field.is_disabled .choice_chip_group,
.choice_field.is_disabled .choice_classic_group {
  border-bottom-color: #333;
}
.choice_field.is_disabled .choice_classic_control {
  border-color: #333;
}
.choice_field.is_disabled .choice_chip_input:checked + .choice_chip_label {
  background: #333;
  color: rgba(246, 250, 249, 0.55);
}
.choice_field.is_disabled .choice_classic_input[type=radio]:checked + .choice_classic_control::after {
  background: rgba(246, 250, 249, 0.55);
}
.choice_field.is_disabled .choice_classic_input[type=checkbox]:checked + .choice_classic_control {
  background: #333;
  border-color: #333;
}

.choice_classic_group_2col {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 1.25rem;
  row-gap: 0.5rem;
}
@media (min-width: 768px) {
  .choice_classic_group_2col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.choice_classic_group_2col .choice_classic_option {
  min-width: 0;
}

.choice_classic_group_3col {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .choice_classic_group_3col {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.choice_classic_group_3col .choice_classic_option {
  min-width: 0;
}

.toggle_field {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.toggle_label {
  color: #f6faf9;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
}

.toggle_group {
  display: inline-flex;
  justify-content: center;
  align-items: stretch;
  margin-top: 0.25rem;
  overflow: hidden;
}

.toggle_input {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  opacity: 0;
}

.toggle_option {
  min-width: 120px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 1.5rem;
  margin-right: -1px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  user-select: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
.toggle_option:first-of-type {
  border-radius: 0.25rem 0 0 0.25rem;
}
.toggle_option:last-of-type {
  border-radius: 0 0.25rem 0.25rem 0;
  margin-right: 0;
}

.toggle_group_purple .toggle_option {
  color: #bb86fc;
  border: 1px dashed #bb86fc;
}
.toggle_group_purple .toggle_option:hover {
  border-color: #ffd700;
  color: #ffd700;
}
.toggle_group_purple .toggle_input:checked + .toggle_option {
  background: #bb86fc;
  border-color: #bb86fc;
  color: #171a1f;
}
.toggle_group_purple:hover .toggle_input:checked + .toggle_option {
  background: #ffd700;
  border-color: #ffd700;
  color: #171a1f;
}
.toggle_group_purple .toggle_input:focus-visible + .toggle_option {
  border-color: #ffd700;
  color: #ffd700;
}

.toggle_group_trade .toggle_option_green {
  color: #018d6b;
  border: 1px dashed #018d6b;
}
.toggle_group_trade .toggle_option_red {
  color: #ad3324;
  border: 1px dashed #ad3324;
}
.toggle_group_trade .toggle_option_green:hover {
  color: #ffd700;
  border-color: #ffd700;
}
.toggle_group_trade .toggle_option_red:hover {
  color: #ffd700;
  border-color: #ffd700;
}
.toggle_group_trade .toggle_input:checked + .toggle_option_green {
  background: #018d6b;
  border-color: #018d6b;
  color: #f6faf9;
}
.toggle_group_trade .toggle_input:checked + .toggle_option_red {
  background: #ad3324;
  border-color: #ad3324;
  color: #f6faf9;
}
.toggle_group_trade .toggle_input:focus-visible + .toggle_option {
  border-color: #ffd700;
  color: #ffd700;
}

.toggle_field.is_disabled .toggle_label,
.toggle_field.is_disabled .toggle_option {
  color: rgba(246, 250, 249, 0.55);
  cursor: not-allowed;
  opacity: 0.7;
}
.toggle_field.is_disabled .toggle_option {
  border-color: #333;
}
.toggle_field.is_disabled .toggle_input:checked + .toggle_option {
  background: #333;
  border-color: #333;
  color: rgba(246, 250, 249, 0.55);
}

.modal_veil {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  padding: 1rem;
  background: rgba(25, 30, 40, 0.5);
  backdrop-filter: blur(0.5rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out;
}

.modal_veil.is_open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal_window {
  position: relative;
  z-index: 9100;
  width: min(90vw, 42rem);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #ffd700;
  border-bottom: 1px solid #ffd700;
  border-radius: 0.5rem;
  background: rgba(25, 30, 40, 0.5);
  backdrop-filter: blur(0.5rem);
  transform: scale(0.5);
  transition: transform 0.25s ease-in-out;
  overflow: visible;
}

.modal_veil.is_open .modal_window {
  transform: scale(1);
}

.modal_close {
  position: absolute;
  right: 0;
  top: -2rem;
  padding: 0;
  border: none;
  background: none;
  color: #ffd700;
  font: inherit;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: text-decoration-color 0.4s ease-in-out;
}
.modal_close:hover, .modal_close:focus-visible {
  text-decoration: line-through;
}
@media (min-width: 1024px) {
  .modal_close {
    top: -1.25rem;
    font-size: 0.75rem;
  }
}

.modal_header {
  padding: 1rem;
}
.modal_header h2,
.modal_header h3 {
  margin: 0;
  color: #bb86fc;
}

.modal_body {
  padding: 1rem;
  max-height: 60vh;
  overflow: auto;
}

.modal_footer {
  padding: 1rem;
  background: rgba(0, 0, 0, 0.15);
}

.modal_actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .modal_actions {
    flex-direction: row;
  }
}

.toast_container {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 9500;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: min(22rem, 100vw - 2rem);
}

.toast {
  padding: 0.75rem 1rem;
  border-radius: 0.25rem;
  color: #f6faf9;
  font-size: 0.9rem;
  line-height: 1.35;
  opacity: 0.95;
  animation: toast_fade_in_out 4s ease forwards;
}

.toast_green {
  background: #018d6b;
}

.toast_red {
  background: #ad3324;
}

.toast_orange {
  background: #f39c12;
}

.toast_blue {
  background: #4e8fff;
}

.toast_purple {
  background: #bb86fc;
}

.toast_gray {
  background: #333;
}

.toast_info {
  background: #4e8fff;
}

@keyframes toast_fade_in_out {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }
  10% {
    transform: translateY(0);
    opacity: 0.95;
  }
  90% {
    opacity: 0.95;
  }
  100% {
    transform: translateY(-10px);
    opacity: 0;
  }
}
.tooltip {
  position: absolute;
  z-index: 7000;
  max-width: 280px;
  display: flex;
  flex-wrap: wrap;
  padding: 10px 12px;
  border-left: 1px solid #ffd700;
  border-right: 1px solid #ffd700;
  border-radius: 0.5rem;
  background: rgba(25, 30, 40, 0.5);
  backdrop-filter: blur(3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  color: #f6faf9;
  font-size: 0.6rem;
  line-height: 1.45;
  opacity: 0;
  transform: scale(0.95);
  pointer-events: auto;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.tooltip.is_visible {
  opacity: 1;
  transform: scale(1);
}

.tooltip:not(.is_visible) {
  pointer-events: none;
}

.autocomplete {
  position: relative;
  width: 100%;
}

.autocomplete_list {
  position: absolute;
  top: calc(100% + 0.25rem);
  left: 0;
  z-index: 2000;
  width: 100%;
  max-height: 11.5rem;
  overflow-y: auto;
  overflow-x: hidden;
  display: none;
  flex-direction: column;
  padding: 0.25rem;
  border-top: 1px solid #ffd700;
  border-bottom: 1px solid #ffd700;
  border-radius: 0.25rem;
  background: rgba(25, 30, 40, 0.5);
  backdrop-filter: blur(0.5rem);
  font-size: 0.75rem;
}

.autocomplete.is_open .autocomplete_list {
  display: flex;
}

.autocomplete_option {
  min-height: 2rem;
  display: flex;
  align-items: center;
  padding: 0.5rem;
  border-radius: 0.25rem;
  color: #f6faf9;
  cursor: pointer;
  transition: color 0.4s ease-in-out, background-color 0.15s ease-in-out;
}
.autocomplete_option:hover, .autocomplete_option:focus-visible, .autocomplete_option.is_highlighted {
  color: #ffd700;
  background: rgba(255, 255, 255, 0.04);
}
.autocomplete_option.is_hidden {
  display: none;
}

.autocomplete_empty {
  display: none;
  padding: 0.5rem;
  color: rgba(246, 250, 249, 0.55);
  font-size: 0.75rem;
  text-align: center;
}

.autocomplete.is_empty .autocomplete_empty {
  display: block;
}

.chips_autocomplete {
  position: relative;
  width: 100%;
}

.chips_container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  width: 100%;
  margin-top: 0.5rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.5rem;
  border: 1px solid #ffd700;
  border-radius: 999px;
  background: #333;
  color: #ffd700;
  font-size: 0.75rem;
  line-height: 1;
  user-select: none;
}

.chip_remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: none;
  color: inherit;
  font: inherit;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.small_chip {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.4rem;
  margin: 0.2rem;
  border-radius: 0.25rem;
  background: #f6faf9;
  color: #171a1f;
  font-size: 0.5rem;
  line-height: 1;
}

.status_badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.25rem;
  padding: 0.15rem 0.4rem;
  border-radius: 0.2rem;
  color: #f6faf9;
  font-size: 0.58rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.status_badge_green {
  background: #018d6b;
}

.status_badge_red {
  background: #ad3324;
}

.status_badge_purple {
  background: #bb86fc;
  color: #171a1f;
}

.status_badge_gray {
  background: #333;
}

.status_badge_orange {
  background: #f39c12;
  color: #171a1f;
}

.status_badge_blue {
  background: #4e8fff;
}

.status_badge_gold {
  background: #ffd700;
  color: #171a1f;
}

.status_badge_hot_red {
  background: #ff0000;
  color: #f6faf9;
}

.status_badge_lawn {
  background: #7cfc00;
  color: #171a1f;
}

.notification_badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 0.28rem;
  border-radius: 999px;
  color: #f6faf9;
  font-size: 0.58rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.notification_badge_green {
  background: #018d6b;
}

.notification_badge_red {
  background: #ad3324;
}

.notification_badge_purple {
  background: #bb86fc;
  color: #171a1f;
}

.notification_badge_gray {
  background: #333;
}

.notification_badge_orange {
  background: #f39c12;
  color: #171a1f;
}

.notification_badge_blue {
  background: #4e8fff;
}

.notification_badge_gold {
  background: #ffd700;
  color: #171a1f;
}

.notification_badge_hot_red {
  background: #ff0000;
  color: #f6faf9;
}

.notification_badge_lawn {
  background: #7cfc00;
  color: #171a1f;
}

.badge_anchor {
  position: relative;
  display: inline-flex;
  width: fit-content;
}

.badge_anchor > .notification_badge {
  position: absolute;
  top: -0.45rem;
  right: -0.45rem;
}

.notice_block {
  width: 100%;
  padding: 0.75rem 1rem;
  border-left: 2px solid currentColor;
  border-radius: 0.25rem;
  background: rgba(0, 0, 0, 0.2);
  color: #f6faf9;
  font-size: 0.85rem;
  line-height: 1.45;
}

.notice_block_title {
  margin-bottom: 0.35rem;
  color: currentColor;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.25;
}

.notice_block_text {
  color: rgba(246, 250, 249, 0.78);
}

.notice_block_text + .notice_block_text {
  margin-top: 0.35rem;
}

.notice_block_green {
  color: #018d6b;
}

.notice_block_red {
  color: #ad3324;
}

.notice_block_purple {
  color: #bb86fc;
}

.notice_block_gray {
  color: rgba(246, 250, 249, 0.55);
}

.notice_block_orange {
  color: #f39c12;
}

.notice_block_blue {
  color: #4e8fff;
}

.notice_block_gold {
  color: #ffd700;
}

.form_notice {
  width: 100%;
  color: rgba(246, 250, 249, 0.55);
  font-size: 0.65rem;
  font-weight: 400;
  line-height: 1.45;
  text-align: center;
}

.form_notice_green {
  color: #018d6b;
}

.form_notice_red {
  color: #ad3324;
}

.form_notice_purple {
  color: #bb86fc;
}

.form_notice_gray {
  color: rgba(246, 250, 249, 0.55);
}

.form_notice_orange {
  color: #f39c12;
}

.form_notice_blue {
  color: #4e8fff;
}

.form_notice_gold {
  color: #ffd700;
}

.spoiler {
  width: 100%;
  border-bottom: 1px solid #bb86fc;
  transition: border-color 0.15s ease-in-out;
}
.spoiler:hover, .spoiler.is_open {
  border-bottom-color: #ffd700;
}

.spoiler_trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border: none;
  background: none;
  color: #f6faf9;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: color 0.15s ease-in-out;
}
.spoiler_trigger:hover, .spoiler_trigger:focus-visible {
  color: #ffd700;
}

.spoiler_title {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.spoiler_marker {
  flex: 0 0 auto;
  color: #bb86fc;
  font-size: 1.1rem;
  line-height: 1;
  transition: color 0.15s ease-in-out, transform 0.15s ease-in-out;
}

.spoiler.is_open .spoiler_marker {
  color: #ffd700;
  transform: rotate(45deg);
}

.spoiler_content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
}

.spoiler_body {
  padding: 0.75rem 0 1rem;
  color: rgba(246, 250, 249, 0.78);
  font-size: 0.85rem;
  line-height: 1.5;
}

.spoiler_panel {
  padding: 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.25rem;
  background: rgba(0, 0, 0, 0.2);
}
.spoiler_panel .spoiler_body {
  padding-bottom: 1rem;
}

.accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.empty_state {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem;
  border: 1px dashed rgba(255, 255, 255, 0.08);
  border-radius: 0.5rem;
  background: rgba(0, 0, 0, 0.14);
  color: rgba(246, 250, 249, 0.55);
  text-align: center;
}

.empty_state_title {
  color: #f6faf9;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.empty_state_text {
  max-width: 36rem;
  color: rgba(246, 250, 249, 0.55);
  font-size: 0.85rem;
  line-height: 1.5;
}

.empty_state_actions {
  width: 100%;
  max-width: 18rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.empty_state_compact {
  padding: 1rem;
}
.empty_state_compact .empty_state_title {
  font-size: 0.9rem;
}
.empty_state_compact .empty_state_text {
  font-size: 0.75rem;
}

.empty_state_purple {
  border-color: rgba(187, 134, 252, 0.35);
}
.empty_state_purple .empty_state_title {
  color: #bb86fc;
}

.empty_state_gold {
  border-color: rgba(255, 215, 0, 0.35);
}
.empty_state_gold .empty_state_title {
  color: #ffd700;
}

.empty_state_blue {
  border-color: rgba(78, 143, 255, 0.35);
}
.empty_state_blue .empty_state_title {
  color: #4e8fff;
}

.empty_state_red {
  border-color: rgba(173, 51, 36, 0.45);
}
.empty_state_red .empty_state_title {
  color: #ad3324;
}

.table_scroll {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: block;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
}

.standard_table,
.dense_table {
  width: 100%;
  min-width: max-content;
  border-collapse: collapse;
  color: #f6faf9;
  text-align: center;
}
.standard_table th,
.standard_table td,
.dense_table th,
.dense_table td {
  border-bottom: 1px dotted #bb86fc;
  vertical-align: middle;
}
.standard_table th,
.dense_table th {
  color: #f6faf9;
  font-weight: 700;
  white-space: nowrap;
}
.standard_table th img,
.dense_table th img {
  height: 1.25rem;
  margin: 0 auto;
}
.standard_table th .sortable,
.dense_table th .sortable {
  display: flex;
  justify-content: center;
  align-items: center;
}
.standard_table th .sortable img,
.dense_table th .sortable img {
  margin: 0 0.25rem;
}
.standard_table th .sortable .sort_by,
.dense_table th .sortable .sort_by {
  display: inline-flex;
  flex-direction: column;
  vertical-align: middle;
}
.standard_table th .sortable .sort_by img[data-sort-arrow=true],
.dense_table th .sortable .sort_by img[data-sort-arrow=true] {
  height: 0.6rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.standard_table th .sortable .sort_by img[data-sort-arrow=true]:hover,
.dense_table th .sortable .sort_by img[data-sort-arrow=true]:hover {
  filter: brightness(1.5);
}
.standard_table td,
.dense_table td {
  color: rgba(246, 250, 249, 0.78);
}
.standard_table a,
.dense_table a {
  color: #f6faf9;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.standard_table {
  font-size: 0.8rem;
}
.standard_table th,
.standard_table td {
  padding: 0.45rem 0.6rem;
}

.dense_table {
  font-size: 0.62rem;
}
.dense_table th,
.dense_table td {
  padding: 0.18rem 0.28rem;
}

.table_wide {
  min-width: 64rem;
}

.table_extra_wide {
  min-width: 86rem;
}

.table_interactive tbody tr {
  transition: background-color 0.15s ease-in-out, opacity 0.15s ease-in-out;
}
.table_interactive tbody tr:hover {
  background: rgba(255, 255, 255, 0.035);
}

.table_cell_left {
  text-align: left;
}

.table_cell_right {
  text-align: right;
}

.table_cell_center {
  text-align: center;
}

.table_cell_number {
  text-align: right;
  white-space: nowrap;
  color: #f6faf9;
}

.table_cell_nowrap {
  white-space: nowrap;
}

.table_cell_muted {
  color: rgba(246, 250, 249, 0.55);
}

.table_cell_gold {
  color: #ffd700;
}

.table_cell_green {
  color: #018d6b;
}

.table_cell_red {
  color: #ad3324;
}

.table_cell_blue {
  color: #4e8fff;
}

.table_cell_purple {
  color: #bb86fc;
}

.table_cell_actions {
  white-space: nowrap;
}

.table_actions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.table_actions .button {
  width: auto;
  padding: 0.35rem 0.55rem;
  font-size: 0.65rem;
}

.table_row_muted {
  opacity: 0.55;
}

.table_row_deleted {
  opacity: 0.45;
}

.table_row_error {
  background: rgba(173, 51, 36, 0.08);
}

.table_row_warning {
  background: rgba(243, 156, 18, 0.08);
}

.table_empty_cell {
  padding: 1.25rem !important;
  color: rgba(246, 250, 249, 0.55);
  font-size: 0.75rem;
  text-align: center;
}

.table_reflow {
  min-width: 0;
}
@media (max-width: 768px) {
  .table_reflow thead {
    display: none;
  }
  .table_reflow tbody,
  .table_reflow tr,
  .table_reflow td {
    display: block;
    width: 100%;
  }
  .table_reflow tr {
    margin-bottom: 1rem;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.25rem;
    background: rgba(0, 0, 0, 0.16);
  }
  .table_reflow td {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.35rem 0;
    border-bottom: 1px dotted rgba(187, 134, 252, 0.25);
    text-align: right;
  }
  .table_reflow td:last-child {
    border-bottom: none;
  }
  .table_reflow td::before {
    content: attr(data-label);
    flex: 0 0 auto;
    color: rgba(246, 250, 249, 0.55);
    font-weight: 700;
    text-align: left;
  }
}

.responsive_table_pair {
  width: 100%;
  min-width: 0;
}

.responsive_table_desktop {
  display: none;
  min-width: 0;
}
@media (min-width: 768px) {
  .responsive_table_desktop {
    display: block;
  }
}

.responsive_table_cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  min-width: 0;
}
@media (min-width: 768px) {
  .responsive_table_cards {
    display: none;
  }
}

.data_card {
  width: 100%;
  min-width: 0;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid #bb86fc;
  border-radius: 0.5rem;
  background: rgba(0, 0, 0, 0.18);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.data_card_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0.75rem;
  background: rgba(187, 134, 252, 0.12);
}

.data_card_identity {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.data_card_id {
  color: #ffd700;
  font-size: 0.8rem;
  text-decoration: underline;
  text-underline-offset: 0.12em;
  white-space: nowrap;
}

.data_card_title {
  min-width: 0;
  color: #f6faf9;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.data_card_actions {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  min-width: 2rem;
}

.data_card_body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem;
}

.data_card_footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
  padding: 0 0.75rem 0.75rem;
}

.data_card_row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.75rem;
  color: rgba(246, 250, 249, 0.78);
  font-size: 0.8rem;
  line-height: 1.35;
}

.data_card_label {
  color: rgba(246, 250, 249, 0.55);
}

.data_card_value {
  min-width: 0;
  color: #f6faf9;
  text-align: right;
  overflow-wrap: anywhere;
}

.data_card_value_gold {
  color: #ffd700;
}

.data_card_value_green {
  color: #018d6b;
}

.data_card_value_red {
  color: #ad3324;
}

.data_card_value_purple {
  color: #bb86fc;
}

.data_card_icon_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  padding: 0;
  border: none;
  background: none;
  color: #bb86fc;
  font: inherit;
  cursor: pointer;
  transition: color 0.15s ease-in-out;
}
.data_card_icon_button:hover, .data_card_icon_button:focus-visible {
  color: #ffd700;
}

.record_list {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.record_collapsible {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.5rem;
  background: rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transition: border-color 0.15s ease-in-out, background-color 0.15s ease-in-out;
}
.record_collapsible.is_open {
  border-color: rgba(255, 215, 0, 0.45);
}

.record_collapsible_header {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: block;
  padding: 0;
  border: none;
  background: none;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.record_collapsible_summary {
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0.75rem;
  border-bottom: 1px dotted rgba(187, 134, 252, 0.35);
}

.record_collapsible_summary_item {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.record_collapsible_summary_label {
  color: rgba(246, 250, 249, 0.55);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
}

.record_collapsible_summary_value {
  min-width: 0;
  color: #f6faf9;
  font-size: 0.78rem;
  overflow-wrap: anywhere;
}

.record_collapsible_marker {
  color: #bb86fc;
  font-size: 1rem;
  line-height: 1;
  transition: color 0.15s ease-in-out, transform 0.15s ease-in-out;
}

.record_collapsible.is_open .record_collapsible_marker {
  color: #ffd700;
  transform: rotate(45deg);
}

.record_collapsible_content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
}

.record_collapsible_body {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 1rem;
  overflow: hidden;
}

@media (max-width: 768px) {
  .record_collapsible_summary {
    grid-template-columns: 1fr;
  }
}
.loading_dots {
  display: inline-flex;
  align-items: center;
  gap: 0.18rem;
}
.loading_dots::before, .loading_dots::after {
  content: "";
}
.loading_dots span, .loading_dots::before, .loading_dots::after {
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.35;
  animation: loading_dot_pulse 1.1s infinite ease-in-out;
}
.loading_dots::before {
  animation-delay: 0s;
}
.loading_dots span {
  animation-delay: 0.15s;
}
.loading_dots::after {
  animation-delay: 0.3s;
}

@keyframes loading_dot_pulse {
  0%, 80%, 100% {
    opacity: 0.25;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
    transform: translateY(-0.12rem);
  }
}
.loading_spinner {
  width: 1.6rem;
  height: 1.6rem;
  border: 2px solid rgba(187, 134, 252, 0.18);
  border-top-color: #ffd700;
  border-radius: 50%;
  animation: loading_spin 0.8s linear infinite;
}

.loading_spinner_small {
  width: 1rem;
  height: 1rem;
  border-width: 1px;
}

.loading_spinner_large {
  width: 2.4rem;
  height: 2.4rem;
  border-width: 2px;
}

@keyframes loading_spin {
  to {
    transform: rotate(360deg);
  }
}
.loading_block {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem;
  border: 1px dashed rgba(255, 255, 255, 0.08);
  border-radius: 0.5rem;
  background: rgba(0, 0, 0, 0.14);
  color: rgba(246, 250, 249, 0.55);
  text-align: center;
}

.loading_text {
  color: rgba(246, 250, 249, 0.55);
  font-size: 0.8rem;
  line-height: 1.45;
}

.loading_text_primary {
  color: #f6faf9;
}

.loading_text_gold {
  color: #ffd700;
}

.loading_text_purple {
  color: #bb86fc;
}

.button.is_loading {
  position: relative;
  cursor: wait;
  opacity: 0.78;
  pointer-events: none;
}

.button.is_loading::after {
  content: "";
  display: inline-block;
  width: 0.85rem;
  height: 0.85rem;
  margin-left: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-top-color: #f6faf9;
  border-radius: 50%;
  vertical-align: -0.12rem;
  animation: loading_spin 0.8s linear infinite;
}

.icon_row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.icon_button {
  width: 1.75rem;
  height: 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  background: transparent;
  color: #bb86fc;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, opacity 0.15s ease-in-out;
}
.icon_button:hover, .icon_button:focus-visible {
  border-color: rgba(255, 215, 0, 0.35);
  background: rgba(255, 255, 255, 0.04);
}
.icon_button:disabled, .icon_button.is_disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.icon_button_small {
  width: 1.35rem;
  height: 1.35rem;
  padding: 0.18rem;
}

.icon_button_large {
  width: 2.25rem;
  height: 2.25rem;
  padding: 0.35rem;
}

.icon_img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

.table_actions .icon_button {
  width: 1.45rem;
  height: 1.45rem;
  padding: 0.2rem;
}

.data_card_actions .icon_button,
.data_card_footer .icon_button {
  width: 1.45rem;
  height: 1.45rem;
  padding: 0.2rem;
}

.thumbnail_grid {
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 20rem));
  justify-content: center;
  gap: 1rem;
}

.thumbnail {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.3rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.5rem;
  background: rgba(0, 0, 0, 0.12);
  color: #f6faf9;
  text-decoration: none;
  cursor: pointer;
}

.thumbnail_media {
  position: relative;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border-radius: 0.25rem;
  background: rgba(0, 0, 0, 0.24);
}

.thumbnail_img {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 0.25rem;
  user-select: none;
}

.thumbnail_caption {
  position: absolute;
  inset: auto 0 -1px 0;
  padding: 0.45rem 0.55rem;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(3px);
  color: #f6faf9;
  font-size: 0.68rem;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(calc(100% + 1px));
  transition: opacity 0.15s ease-in-out, transform 0.15s ease-in-out;
}

.thumbnail:hover .thumbnail_caption,
.thumbnail:focus-visible .thumbnail_caption,
.thumbnail.is_active .thumbnail_caption {
  opacity: 1;
  transform: translateY(0);
}

.thumbnail_filename {
  min-width: 0;
  padding: 0 0.1rem;
  color: rgba(246, 250, 249, 0.55);
  font-size: 0.62rem;
  line-height: 1.35;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.thumbnail_compact {
  max-width: 14rem;
}
.thumbnail_compact .thumbnail_img {
  aspect-ratio: 4/3;
}
.thumbnail_compact .thumbnail_filename {
  font-size: 0.58rem;
}

.thumbnail_square .thumbnail_img {
  aspect-ratio: 1/1;
}

.lightbox_veil {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(0.35rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out;
}

.lightbox_veil.is_open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox_window {
  position: relative;
  z-index: 9100;
  width: min(96vw, 90rem);
  height: min(94vh, 60rem);
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lightbox_close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 2;
  padding: 0.2rem 0.35rem;
  border: 1px solid rgba(255, 215, 0, 0.35);
  border-radius: 0.25rem;
  background: rgba(0, 0, 0, 0.55);
  color: #ffd700;
  font: inherit;
  font-size: 0.75rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox_close:hover, .lightbox_close:focus-visible {
  text-decoration: line-through;
}

.lightbox_image_wrap {
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.5rem;
  background: rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.lightbox_image {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  user-select: none;
}

.lightbox_meta {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-height: 4rem;
  padding: 0.25rem 0.15rem 0.1rem;
  text-align: center;
}

.lightbox_caption {
  color: #f6faf9;
  font-size: 0.8rem;
  line-height: 1.35;
}

.lightbox_filename {
  color: rgba(246, 250, 249, 0.55);
  font-size: 0.62rem;
  line-height: 1.35;
}

.lightbox_counter {
  color: #bb86fc;
  font-size: 0.62rem;
  line-height: 1.35;
}

.inline_more {
  display: inline;
  color: #f6faf9;
  font-size: 0.65rem;
  line-height: 1;
  text-decoration: underline;
  text-underline-offset: 0.12em;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.15s ease-in-out, color 0.15s ease-in-out;
}
.inline_more:hover, .inline_more:focus-visible {
  opacity: 1;
}

.inline_more_purple {
  color: #bb86fc;
}

.inline_more_gold {
  color: #ffd700;
}

.text_primary {
  color: #f6faf9;
}

.text_secondary {
  color: rgba(246, 250, 249, 0.78);
}

.text_muted {
  color: rgba(246, 250, 249, 0.55);
}

.text_purple {
  color: #bb86fc;
}

.text_gold {
  color: #ffd700;
}

.text_green {
  color: #018d6b;
}

.text_lawn {
  color: #7cfc00;
}

.text_red {
  color: #ad3324;
}

.text_hot_red {
  color: #ff0000;
}

.text_orange {
  color: #f39c12;
}

.text_blue {
  color: #4e8fff;
}

.text_gray {
  color: rgba(246, 250, 249, 0.55);
}

.text_bold {
  font-weight: 700;
}

.text_thin {
  font-weight: 300;
}

.text_small {
  font-size: 0.75em;
}

.text_tiny {
  font-size: 0.65em;
}

.text_big {
  font-size: 1.15em;
}

.text_upper {
  text-transform: uppercase;
}

.text_nowrap {
  white-space: nowrap;
}

.text_underline {
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.text_strike {
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.text_dim {
  opacity: 0.55;
}

.text_glow {
  text-shadow: 0 0 0.45rem currentColor;
}

.text_mark {
  display: inline-flex;
  align-items: center;
  padding: 0.05rem 0.35rem;
  border: 1px solid currentColor;
  border-radius: 0.2rem;
  color: #bb86fc;
  font-size: 0.85em;
  line-height: 1.25;
  background: rgba(0, 0, 0, 0.16);
}

.text_mark_purple {
  color: #bb86fc;
}

.text_mark_gold {
  color: #ffd700;
}

.text_mark_green {
  color: #018d6b;
}

.text_mark_lawn {
  color: #7cfc00;
}

.text_mark_red {
  color: #ad3324;
}

.text_mark_hot_red {
  color: #ff0000;
}

.text_mark_blue {
  color: #4e8fff;
}

.text_mark_orange {
  color: #f39c12;
}

.text_mark_gray {
  color: rgba(246, 250, 249, 0.55);
}

.text_bracket {
  color: #bb86fc;
  font-size: 0.9em;
  font-weight: 700;
  white-space: nowrap;
}

.text_bracket::before {
  content: "[";
  opacity: 0.65;
  margin-right: 0.12em;
}

.text_bracket::after {
  content: "]";
  opacity: 0.65;
  margin-left: 0.12em;
}

.text_dot {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  color: #bb86fc;
  font-size: 0.9em;
  font-weight: 700;
  white-space: nowrap;
}

.text_dot::before,
.text_dot::after {
  content: "";
  width: 0.25em;
  height: 0.25em;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.75;
}

.text_value {
  color: #f6faf9;
  font-weight: 700;
  white-space: nowrap;
}

.text_value_positive {
  color: #018d6b;
}

.text_value_negative {
  color: #ad3324;
}

.text_value_neutral {
  color: rgba(246, 250, 249, 0.55);
}

.text_value_error {
  color: #ff0000;
}

.text_value_live {
  color: #7cfc00;
}

.tri_panel {
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 1024px) {
  .tri_panel {
    grid-template-columns: minmax(0, 3fr) minmax(0, 4fr) minmax(0, 3fr);
    align-items: stretch;
  }
}

@media (min-width: 1024px) {
  .tri_panel_equal {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.tri_panel_unit {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.5rem;
  background: rgba(0, 0, 0, 0.16);
}

.tri_panel_unit_primary {
  border-color: rgba(187, 134, 252, 0.35);
  background: rgba(187, 134, 252, 0.06);
}

.tri_panel_header {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px dotted rgba(187, 134, 252, 0.35);
}

.tri_panel_title {
  min-width: 0;
  color: #f6faf9;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tri_panel_meta {
  flex: 0 0 auto;
  color: rgba(246, 250, 249, 0.55);
  font-size: 0.65rem;
  line-height: 1.3;
}

.tri_panel_body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tri_panel_footer {
  min-width: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
  border-top: 1px dotted rgba(187, 134, 252, 0.25);
}

/*# sourceMappingURL=owl_ui.css.map */
