:root {
  /* Common */
  --font-family: "Inter Variable", sans-serif;
  --font-size: 13px;
  --header-height: 70px;
  --footer-height: 50px;

  /* Base Colors */
  --accent-blue: #109cf1;
  --blue: #1a73e8;
  --green: #56b623;
  --red: #eb5757;
  --yellow: #ffb946;
  --orange: #f98b29;
  --gray-5: #e0e0e0;
  --white: #fff;

  --hover-color: #8cbdfd;

  /* spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-l: var(--spacing-lg);
  --spacing-xl: 32px;
  --spacing-xxl: 40px;
  --spacing-xxxl: 48px;

  /* radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-xxl: 32px;
  --radius-xxxl: 40px;

  /* font size */
  --font-size-xxs: 10px;
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-md: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-size-xxl: 22px;

  --table-mobile-column-min-size: 80px;

  --font-size-headings-xxl: 32px;
  --font-size-headings-xl: 28px;
  --font-size-headings-lg: 24px;
  --font-size-headings-md: 20px;
  --font-size-headings-sm: 18px;
  --font-size-headings-xs: 16px;
  --font-size-headings-xxs: 14px;
}

html[theme="light"] {
  --font-color: #334d6e;
  --font-color-secondary: #667892;
  --text-primary: var(--font-color);
  --text-secondary: var(--font-color-secondary);
  --bg-fill: #fff;
  --bg-main: #eef3f8;
  --bg-hover: color-mix(in srgb, var(--accent-blue) 8%, white);
  --icon-grey: #9eb0c8;
  --dark-blue: #334d6e;
  --surface-1: #ffffff;
  --surface-2: #f8fbff;
  --surface-3: #f1f6fc;
  --surface-elevated: rgba(255, 255, 255, 0.94);
  --surface-overlay: rgba(15, 23, 42, 0.62);
  --border-subtle: rgba(148, 163, 184, 0.24);
  --border-strong: rgba(100, 116, 139, 0.34);
  --focus-ring: color-mix(in srgb, var(--accent-blue) 28%, transparent);
  --accent-soft: color-mix(in srgb, var(--accent-blue) 14%, white);
  --success-soft: color-mix(in srgb, var(--green) 14%, white);
  --danger-soft: color-mix(in srgb, var(--red) 12%, white);
  --shadow-sm: 0 10px 25px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 18px 40px rgba(15, 23, 42, 0.12);
  --page-root-shadow:
    0 18px 34px -30px rgba(15, 23, 42, 0.22), 0 8px 18px -16px rgba(148, 163, 184, 0.24);
  --button-primary-bg: #2563eb;
  --button-primary-bg-hover: #1d4ed8;
  --button-primary-bg-active: #1e40af;
  --button-primary-border: rgba(37, 99, 235, 0.6);
  --button-primary-fg: #ffffff;
  --button-secondary-fg: #17324d;
  --button-secondary-bg: #eef4fb;
  --button-secondary-bg-hover: #e3edf8;
  --button-secondary-border: rgba(51, 77, 110, 0.18);
  --card-border: rgba(148, 163, 184, 0.22);
  --gradient-bg-1: linear-gradient(#ffffff, #e3efff, #c1d7f3);

  /* Optional */
  --input-bg: var(--surface-2);
  --input-border: rgba(148, 163, 184, 0.38);
  --table-border: rgba(148, 163, 184, 0.24);
  --hover-row-color: color-mix(in srgb, var(--accent-blue) 10%, white);
  --frame-border: var(--border-subtle);

  /* Table */
  --table-head: var(--surface-3);

  /* Skeleton */
  --skeleton-base: #eaecef;
  --skeleton-shimmer: rgba(255, 255, 255, 0.85);

  /* Layout refresh */
  --layout-bg: linear-gradient(135deg, #f8fbff 0%, #eef5ff 48%, #f6edff 100%);
  --layout-header-bg: rgba(255, 255, 255, 0.96);
  --layout-header-border: rgba(148, 163, 184, 0.24);
  --layout-sidebar-bg: linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
  --layout-sidebar-active-bg: linear-gradient(90deg, #60a5fa 0%, #a855f7 100%);
  --layout-sidebar-icon-bg: linear-gradient(135deg, #60a5fa 0%, #8b5cf6 100%);
  --layout-sidebar-active-icon-bg: linear-gradient(135deg, #facc15 0%, #f97316 100%);
  --layout-search-bg: rgba(248, 251, 255, 0.92);
  --layout-control-bg: rgba(255, 255, 255, 0.9);
  --layout-control-bg-hover: color-mix(in srgb, var(--accent-blue) 11%, white);
  --layout-accent-gradient: linear-gradient(90deg, #38bdf8 0%, #8b5cf6 100%);
  --layout-badge-bg: linear-gradient(135deg, #fb7185 0%, #e11d48 100%);
}

html[theme="dark"] {
  --font-color: #f5f6f8;
  --font-color-secondary: #a9b4c4;
  --text-primary: var(--font-color);
  --text-secondary: var(--font-color-secondary);
  --bg-fill: #1d2938;
  --bg-main: #15202d;
  --bg-hover: color-mix(in srgb, var(--accent-blue) 14%, transparent);
  --dark-blue: #f5f6f8;
  --icon-grey: #6e89ab;
  --surface-1: #1d2938;
  --surface-2: #233244;
  --surface-3: #2a3a4d;
  --surface-elevated: rgba(29, 41, 56, 0.94);
  --surface-overlay: rgba(2, 6, 23, 0.74);
  --border-subtle: rgba(148, 163, 184, 0.16);
  --border-strong: rgba(148, 163, 184, 0.28);
  --focus-ring: color-mix(in srgb, var(--accent-blue) 30%, transparent);
  --accent-soft: color-mix(in srgb, var(--accent-blue) 18%, transparent);
  --success-soft: color-mix(in srgb, var(--green) 20%, transparent);
  --danger-soft: color-mix(in srgb, var(--red) 18%, transparent);
  --shadow-sm: 0 12px 28px rgba(2, 6, 23, 0.36);
  --shadow-md: 0 22px 44px rgba(2, 6, 23, 0.42);
  --page-root-shadow:
    0 18px 34px -28px rgba(2, 6, 23, 0.5), 0 8px 18px -18px rgba(15, 23, 42, 0.38);
  --button-primary-bg: color-mix(in srgb, var(--accent-blue) 88%, var(--blue));
  --button-primary-bg-hover: color-mix(in srgb, var(--accent-blue) 96%, var(--blue));
  --button-primary-bg-active: color-mix(in srgb, var(--accent-blue) 78%, #0f172a);
  --button-primary-border: color-mix(in srgb, var(--accent-blue) 72%, transparent);
  --button-primary-fg: var(--white);
  --button-secondary-fg: var(--font-color);
  --button-secondary-bg: var(--surface-2);
  --button-secondary-bg-hover: var(--surface-3);
  --button-secondary-border: var(--border-subtle);
  --frame-border: var(--border-subtle);
  --gradient-bg-1: linear-gradient(#2c3e50, #34495e, #3a506b);

  /* Optional */
  --input-bg: var(--surface-2);
  --input-border: rgba(148, 163, 184, 0.28);
  --table-border: rgba(148, 163, 184, 0.18);
  --card-border: rgba(148, 163, 184, 0.18);
  --hover-row-color: color-mix(in srgb, var(--accent-blue) 20%, transparent);
  --framer-border: var(--gray-5);

  /* Table */
  --table-head: var(--surface-3);

  /* Skeleton */
  --skeleton-base: #2d3f52;
  --skeleton-shimmer: rgba(255, 255, 255, 0.07);

  /* Layout refresh */
  --layout-bg: linear-gradient(135deg, #0f172a 0%, #111827 46%, #1f2937 100%);
  --layout-header-bg: rgba(30, 41, 59, 0.95);
  --layout-header-border: rgba(148, 163, 184, 0.16);
  --layout-sidebar-bg: linear-gradient(180deg, #1e293b 0%, #162033 100%);
  --layout-sidebar-active-bg: linear-gradient(90deg, #3b82f6 0%, #a855f7 100%);
  --layout-sidebar-icon-bg: linear-gradient(135deg, #38bdf8 0%, #8b5cf6 100%);
  --layout-sidebar-active-icon-bg: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  --layout-search-bg: rgba(30, 41, 59, 0.9);
  --layout-control-bg: rgba(30, 41, 59, 0.88);
  --layout-control-bg-hover: rgba(59, 130, 246, 0.18);
  --layout-accent-gradient: linear-gradient(90deg, #38bdf8 0%, #8b5cf6 100%);
  --layout-badge-bg: linear-gradient(135deg, #fb7185 0%, #e11d48 100%);
}

/* Global Zoom Support for Modal Portals */

.ReactModalPortal,
[data-table-context-menu] {
  zoom: var(--app-zoom, 1);
}

:root {
  font-family: var(--font-family);
  line-height: 1.5;
  font-weight: 500;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

html {
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  letter-spacing: 0.5px;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  width: 100%;
  background-color: #f2f2f2;
  display: flex;
  color: var(--font-color);
  background-color: var(--bg-main);
}

#root {
  width: 100%;
  height: 100%;

  background-color: var(--bg-main);
}

* {
  box-sizing: border-box;
}

fieldset {
  border: none;
  padding: 0;
  margin: 0;
  min-width: 0;
}

/* TODO: Remove this style after completed Reusable SignatureTableComponent */

.overflow-hidden {
  overflow: hidden;
}

.overflow-x-auto {
  overflow-x: auto;
}

.tsqd-open-btn-container {
  transform: translateX(-100%);
}
.Fqx9BFT6nPY- {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
  text-align: center;
  background-color: var(--background);
}

.uOWcp7BVW-0- {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-fill);
  border-radius: var(--radius-lg);
  min-width: 40vw;
  min-height: 40vh;
}

.uNjiqawgYv4- {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}

._0tkPlnYQeL0- {
  color: var(--text-secondary);
  margin-bottom: 24px;
  max-width: 80%;
}

._75GbswiCbLY- {
  padding: 12px 24px;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.2s;
}

._75GbswiCbLY-:hover {
  background-color: var(--primary-dark);
}
._1S-llr3lJhI- {
  display: inline-flex;
  align-items: center;
  gap: var(--brand-logo-gap, var(--spacing-sm));
  width: var(--brand-logo-width, auto);
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.ZnnHRaS5Fb4- {
  width: var(--brand-logo-mark-width, var(--brand-logo-height, 35px));
  height: var(--brand-logo-height, 35px);
  flex-shrink: 0;
  object-fit: contain;
}

.FcmGF--pc58- {
  min-width: 0;
  overflow: hidden;
  color: var(--font-color);
  font-size: var(
    --brand-logo-text-size,
    var(--font-size-lg)
  );
  font-weight: 700;
  line-height: 1;
  text-overflow: ellipsis;
}

._1jncB7Wibvg- {
  color: var(--green);
}

.OItWEsBfyuo- {
  color: var(--font-color);
}
.c7uqzvcEX2E- {
  font-weight: 700;
  font-size: var(--font-size-sm);
  text-decoration: none;
  color: var(--font-color);

  &:hover {
    opacity: 0.8;
  }

  @media (max-width: 900px) {
    font-size: var(--font-size-xs);
  }
}
._4O1D4R47AP8- {
  width: 100%;
  min-height: 100%;
  margin: 0 auto;
  padding: 32px 16px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(
      circle at top left,
      color-mix(in srgb, var(--accent-blue) 18%, transparent),
      transparent 38%
    ),
    radial-gradient(
      circle at bottom right,
      color-mix(in srgb, var(--green) 16%, transparent),
      transparent 34%
    );

  @media (max-width: 900px) {
    padding: var(--spacing-md);
    align-items: stretch;
  }
}

.gaLVfoHMoSY- {
  width: min(100%, 520px);
  min-height: auto;
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-radius: 28px;
  border: 1px solid var(--border-subtle);
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--surface-elevated) 96%, transparent),
    var(--surface-1)
  );
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);

  @media (max-width: 900px) {
    padding: 22px 18px 24px;
    border-radius: 24px;
  }
}

.-I8a9n4rQO8- {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.a9-3LT94How- {
  --brand-logo-width: auto;
  --brand-logo-height: 48px;
  --brand-logo-mark-width: 60px;
  --brand-logo-text-size: 30px;
}

.k7Y2Nx7-Sek- {
  color: var(--accent-blue);
  font-weight: 600;
  text-decoration: none;
}
.zHA7txImTtU- {
  all: inherit;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  animation: h8PwCU5vFi0- 0.18s ease-out;
}

@keyframes h8PwCU5vFi0- {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.m2V0gXz3Ydo- {
  position: relative;
  height: 100%;
}
.Rd3yOMI3iKk- {
  height: var(--footer-height);
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(140px, 1fr) minmax(0, auto) minmax(140px, 1fr);
  align-items: center;
  gap: var(--spacing-md);
  padding: 0 var(--spacing-md);
  background: var(--layout-header-bg);
  border-top: 1px solid var(--layout-header-border);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
  box-sizing: border-box;
  /* fix #5: sync with sidebar transition */
  transition:
    left 0.05s linear,
    width 0.05s linear;

  &:not(.dkgSuNP-Sh0-) {
    left: var(--sidebar-width);
    width: calc(100% - var(--sidebar-width));
  }

  @media (max-width: 900px) {
    transition: none;

    &:not(.dkgSuNP-Sh0-) {
      left: 0;
      width: 100%;
    }
  }
}

.rUQoQXg3VzI- {
  grid-column: 3;
  justify-self: end;
  color: var(--text-secondary);
  font-size: var(--font-size-xxs);
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

._-61f3Hjvek8- {
  grid-column: 2;
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-sm);
}

.gZM4ql-4ioQ- {
  max-width: min(36vw, 360px);
  padding: 5px var(--spacing-sm);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: var(--font-size-xs);
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition:
    color 0.15s ease,
    background-color 0.15s ease;
}

.gZM4ql-4ioQ-:hover,
.gZM4ql-4ioQ-:focus-visible {
  color: var(--font-color);
  background: var(--layout-control-bg-hover);
  opacity: 1;
}

.gZM4ql-4ioQ-:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
}

@media (max-width: 900px) {
  .Rd3yOMI3iKk- {
    height: 58px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    padding: 6px var(--spacing-sm);
    transition: none;
  }

  .rUQoQXg3VzI- {
    align-self: center;
    font-size: 10px;
    line-height: 1;
  }

  ._-61f3Hjvek8- {
    width: 100%;
    gap: 4px;
  }

  .gZM4ql-4ioQ- {
    flex: 1 1 0;
    max-width: none;
    min-width: 0;
    padding: 3px var(--spacing-xs);
    font-size: 10px;
    line-height: 1.15;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
.HS6SBM1uGtk- {
  display: flex;
  background: var(--layout-control-bg, var(--bg-fill));
  border: 1px solid var(--layout-header-border, var(--table-border));
  border-radius: 12px;
  overflow: hidden;
  margin-right: 0;
  min-height: 40px;
}

.vwHq4fI91oo- {
  padding: var(--spacing-xs) var(--spacing-sm);
  background-color: transparent;
  border: none;
  border-right: 1px solid var(--layout-header-border, var(--table-border));
  color: var(--font-color);
  cursor: pointer;
  font-size: var(--font-size-sm);
  transition: all 0.2s ease;
  white-space: nowrap;
  position: relative;
}

.vwHq4fI91oo-:last-child {
  border-right: none;
}

.vwHq4fI91oo-:hover {
  background-color: var(--layout-control-bg-hover, var(--hover-row-color));
  color: var(--accent-blue);
}

.vwHq4fI91oo-.aLEcEdOEwh4- {
  background: var(--layout-accent-gradient, var(--accent-blue));
  color: white;
}

.vwHq4fI91oo-.aLEcEdOEwh4-:hover {
  background: var(--layout-accent-gradient, var(--dark-blue));
  color: white;
}

.Vyr3H1kVv3Y- {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  padding: 0;
  color: var(--text-secondary, var(--font-color));
  background: var(--layout-control-bg, var(--bg-fill));
  border: 1px solid var(--layout-header-border, var(--table-border));
  border-radius: 11px;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.Vyr3H1kVv3Y-:hover {
  color: var(--accent-blue);
  background: var(--layout-control-bg-hover, var(--hover-row-color));
  border-color: color-mix(in srgb, var(--accent-blue) 36%, transparent);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--accent-blue) 16%, transparent);
  transform: translateY(-1px);
}

.Vyr3H1kVv3Y-:disabled {
  cursor: not-allowed;
  opacity: 0.62;
  transform: none;
}

.Vyr3H1kVv3Y-.aLEcEdOEwh4- {
  color: var(--white);
  background: var(--layout-accent-gradient, var(--accent-blue));
  border-color: transparent;
}

.Vyr3H1kVv3Y-.aLEcEdOEwh4-:hover {
  color: var(--white);
  background: var(--layout-accent-gradient, var(--dark-blue));
}

.C5IxEkOCh6U- {
  position: absolute;
  right: -5px;
  bottom: -5px;
  min-width: 24px;
  height: 16px;
  padding: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
  border: 1px solid color-mix(in srgb, var(--layout-header-bg, #fff) 78%, transparent);
  border-radius: 999px;
  box-shadow: 0 6px 14px color-mix(in srgb, var(--accent-blue) 28%, transparent);
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  pointer-events: none;
}

@media screen and (max-width: 900px) {
  .vwHq4fI91oo- {
    padding: var(--spacing-xs) 8px;
    font-size: var(--font-size-xs);
  }
}
.gwXR-NK-8O0- {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: linear-gradient(
    90deg,
    var(--orange) 0%,
    color-mix(in srgb, var(--orange) 82%, #7c2d12) 100%
  );
  color: var(--white);
  padding: var(--spacing-xs) var(--spacing-md);
  text-align: center;
  z-index: 11;
  font-size: var(--font-size-sm);
  font-weight: 600;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
}

.hzAvIlwixBU- {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.Ftj9KigLOFM- {
  background-color: color-mix(in srgb, var(--white) 92%, transparent);
  color: var(--orange);
  border: 1px solid color-mix(in srgb, var(--white) 40%, transparent);
  border-radius: var(--radius-md);
  padding: var(--spacing-xs) var(--spacing-sm);
  font-size: var(--font-size-xs);
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    background-color 0.2s ease;
}

.Ftj9KigLOFM-:hover {
  opacity: 0.96;
  transform: translateY(-1px);
}

.cuqsAantWaY- {
  position: fixed;
  top: 0;
  width: 100%;
  height: var(--header-height);
  padding-left: calc(var(--sidebar-width) + 18px);
  padding-right: 18px;
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  background: var(--layout-header-bg);
  border-bottom: 1px solid var(--layout-header-border);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
  z-index: 1002;
  transition:
    top 0.2s ease,
    padding-left 0.2s ease;
}

.xWmwMly9f2k- {
  top: 32px;
}

._4TL3Zjsyxb8- {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: var(--sidebar-width);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding-inline: 12px;
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
  overflow: hidden;
  background: color-mix(in srgb, var(--layout-header-bg) 98%, transparent);
  border-right: 1px solid var(--layout-header-border);
  transition:
    opacity 0.15s ease,
    background-color 0.2s ease,
    width 0.05s linear,
    padding-inline 0.05s linear;
}

._4TL3Zjsyxb8-:hover {
  opacity: 1;
  background: color-mix(in srgb, var(--layout-control-bg-hover) 70%, transparent);
}

.I4dpXa4WWpY- {
  --brand-logo-width: calc(var(--sidebar-width) - 24px);
  --brand-logo-gap: 8px;
  --brand-logo-height: 38px;
  --brand-logo-mark-width: 46px;
  --brand-logo-text-size: 21px;
  justify-content: center;
}

._0rPGUL8JmjI- .I4dpXa4WWpY- {
  --brand-logo-width: 46px;
  --brand-logo-gap: 0px;
  --brand-logo-height: 36px;
  --brand-logo-mark-width: 46px;
}

._0rPGUL8JmjI- {
  justify-content: center;
  padding-inline: 0;
}

._0rPGUL8JmjI- .I4dpXa4WWpY- img {
  max-width: none;
}

.dtHgJ6DnXdI- {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  color: var(--font-color);
  background: var(--layout-control-bg);
  border: 1px solid var(--layout-header-border);
  border-radius: 12px;
  cursor: pointer;
  transition:
    color 0.15s ease,
    background-color 0.15s ease,
    border-color 0.15s ease;
}

.dtHgJ6DnXdI-:hover {
  color: var(--accent-blue);
  background-color: var(--layout-control-bg-hover);
  border-color: color-mix(in srgb, var(--accent-blue) 32%, transparent);
}

.NoyJsRSmHWw- {
  margin-left: auto;
  display: flex;
  align-items: center;
  min-width: 0;
  width: min(360px, 36vw);
  padding: 0 12px;
  border-radius: 14px;
  border: 1px solid var(--layout-header-border);
  background: var(--layout-search-bg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.APTBxEsj3y8- {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 12px;
}

.NoyJsRSmHWw- svg {
  margin-right: 10px;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.Z2R2D8UF-Ys- {
  color: var(--font-color);
  border: none;
  outline: none;
  height: 38px;
  width: 100%;
  background-color: transparent;
  font-size: var(--font-size-sm);
}

.W4bOWgOJ3bE- {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  min-width: 0;
}

.QrHt28wE7NA- {
  position: relative;
  display: flex;
}

.lRECKRFWFY4- {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(15, 23, 42, 0.64);
  backdrop-filter: blur(4px);
}

.lRECKRFWFY4-[data-state="open"] {
  animation: eFyoAqyoxn4- 0.18s ease;
}

.lRECKRFWFY4-[data-state="closed"] {
  animation: Ctrw9rA2qsU- 0.18s ease;
}

._7xrSogRqpmc- {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1201;
  display: flex;
  flex-direction: column;
  width: min(420px, 100vw);
  height: 100dvh;
  border-left: 1px solid var(--layout-header-border);
  background: var(--surface-1);
  box-shadow: -24px 0 56px rgba(15, 23, 42, 0.24);
}

._7xrSogRqpmc-[data-state="open"] {
  animation: YHVQym1-4Sg- 0.22s ease;
}

._7xrSogRqpmc-[data-state="closed"] {
  animation: UCYDSooBDfo- 0.18s ease;
}

.cyA8HcKsScA- {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px;
  color: var(--white);
  background: var(--layout-accent-gradient);
  box-shadow: var(--shadow-sm);
}

.SpLyHho4E8Q- {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pGaweO1ySSU- {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.22);
}

.cWOZxI2AdNc- {
  margin: 0;
  color: var(--white);
  font-size: var(--font-size-xl);
  font-weight: 800;
  line-height: 1.15;
}

.Aojptlqb9T4- {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: var(--font-size-sm);
  line-height: 1.25;
}

.m-HkS7-2L-8- {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition:
    background-color 0.15s ease,
    transform 0.15s ease;
}

.m-HkS7-2L-8-:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

.smWYd9Sgs8Q- {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  padding: 14px;
  background: var(--surface-1);
  scrollbar-width: thin;
  scrollbar-color: var(--icon-grey) transparent;
}

.smWYd9Sgs8Q-::-webkit-scrollbar {
  width: 8px;
}

.smWYd9Sgs8Q-::-webkit-scrollbar-track {
  background: transparent;
  border-radius: var(--radius-sm);
}

.smWYd9Sgs8Q-::-webkit-scrollbar-thumb {
  background: var(--icon-grey);
  border-radius: var(--radius-sm);
  transition: background-color 0.2s ease;
}

.smWYd9Sgs8Q-::-webkit-scrollbar-thumb:hover {
  background: var(--accent-blue);
}

.iX4LWCR5Zhk- {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gs-ZHmTqpg4- {
  padding: 10px;
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  background: var(--surface-2);
}

.Dyn8FGm4sro- {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 6px 10px;
  color: var(--font-color);
  font-size: var(--font-size-sm);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.Dyn8FGm4sro-::-webkit-details-marker {
  display: none;
}

.Dyn8FGm4sro-::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: auto;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  opacity: 0.58;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.16s ease;
}

.gs-ZHmTqpg4-[open] .Dyn8FGm4sro-::after {
  transform: rotate(225deg) translate(-1px, -1px);
}

.afjSb8-2GT0- {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  background: var(--layout-sidebar-icon-bg);
}

.afjSb8-2GT0-[data-tone="project"] {
  background: linear-gradient(135deg, #38bdf8 0%, #2563eb 100%);
}

.afjSb8-2GT0-[data-tone="client"] {
  background: linear-gradient(135deg, #a78bfa 0%, #ec4899 100%);
}

.afjSb8-2GT0-[data-tone="people"] {
  background: linear-gradient(135deg, #818cf8 0%, #6366f1 100%);
}

.afjSb8-2GT0-[data-tone="freelancer"] {
  background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
}

.afjSb8-2GT0-[data-tone="reference"] {
  background: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%);
}

.afjSb8-2GT0-[data-tone="document"] {
  background: linear-gradient(135deg, #60a5fa 0%, #22d3ee 100%);
}

.afjSb8-2GT0-[data-tone="finance"] {
  background: linear-gradient(135deg, #22c55e 0%, #84cc16 100%);
}

.afjSb8-2GT0-[data-tone="call"] {
  background: linear-gradient(135deg, #fb923c 0%, #ef4444 100%);
}

.afjSb8-2GT0-[data-tone="office"] {
  background: linear-gradient(135deg, #2dd4bf 0%, #0ea5e9 100%);
}

.afjSb8-2GT0-[data-tone="admin"] {
  background: linear-gradient(135deg, #8b5cf6 0%, #d946ef 100%);
}

.y0Nb-m4tdvI- {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.v5nI15S-ckg- {
  min-width: 0;
  display: flex;
  align-items: center;
  padding: 8px 10px 8px 42px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: var(--font-size-sm);
  line-height: 18px;
  transition:
    color 0.15s ease,
    background-color 0.15s ease,
    transform 0.15s ease;
}

.v5nI15S-ckg-:hover {
  color: var(--font-color);
  background: var(--surface-1);
  border-color: var(--border-subtle);
  transform: none;
}

.afjSb8-2GT0- svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
}

.k2V-IECPUtU- {
  display: flex;
  align-items: center;
  min-width: 0;
}

.PyaO3rTD54A-,
.o-wtBy-dvKc-,
._9hUx-UPQOYE- {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: inherit;
  border: 1px solid var(--layout-header-border);
  cursor: pointer;
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-decoration: none;
  background: var(--layout-control-bg);
  min-height: 40px;
  white-space: nowrap;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.PyaO3rTD54A- {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 12px;
}

.tFlYIvdGRkY- {
  width: auto;
  padding: 0 12px;
}

._0jKcIbaNMZU- {
  display: inline;
}

.PyaO3rTD54A-:hover,
.o-wtBy-dvKc-:hover,
._9hUx-UPQOYE-:hover {
  color: var(--accent-blue);
  background: var(--layout-control-bg-hover);
  border-color: color-mix(in srgb, var(--accent-blue) 36%, transparent);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--accent-blue) 16%, transparent);
  transform: translateY(-1px);
}

.PyaO3rTD54A-:hover svg,
.o-wtBy-dvKc-:hover svg,
._9hUx-UPQOYE-:hover svg {
  stroke: currentColor;
}

.o-wtBy-dvKc- {
  min-width: 40px;
  max-width: clamp(260px, 28vw, 520px);
  height: 40px;
  padding: 0 12px 0 5px;
  border-radius: 14px;
}

.p8Mj-OQiWx4- {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  font-size: var(--font-size-xs);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  background: var(--layout-accent-gradient);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--accent-blue) 34%, transparent);
}

.DjOIN580Jdo- {
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

._3vpMk66b1Ck- {
  display: none;
}

._9hUx-UPQOYE- {
  min-width: 40px;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 12px;
}

.smVBMgCD76g- {
  display: none;
  flex-shrink: 0;
}

.Ft8Hx8ubUDw- {
  display: inline;
}

.j8598aQkYls-,
.DHmiQGi5g9g- {
  display: none;
}

@keyframes eFyoAqyoxn4- {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes Ctrw9rA2qsU- {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes YHVQym1-4Sg- {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes UCYDSooBDfo- {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}

@media (min-width: 901px) and (max-width: 1199px) {

@media screen and (max-color:2147477350) {
  .cuqsAantWaY- {
    padding-left: calc(var(--sidebar-width) + 12px);
    padding-right: 12px;
    gap: 8px;
  }

  .APTBxEsj3y8- {
    gap: 8px;
    margin-left: 4px;
  }

  .NoyJsRSmHWw- {
    width: clamp(176px, 24vw, 250px);
    padding: 0 10px;
    border-radius: 12px;
  }

  .Z2R2D8UF-Ys- {
    height: 36px;
  }

  .W4bOWgOJ3bE- {
    gap: 6px;
  }

  .PyaO3rTD54A- {
    width: 38px;
    height: 38px;
    min-height: 38px;
    border-radius: 11px;
  }

  .tFlYIvdGRkY- {
    width: 38px;
    min-width: 38px;
    padding: 0;
  }

  ._0jKcIbaNMZU- {
    display: none;
  }

  .o-wtBy-dvKc- {
    width: 38px;
    min-width: 38px;
    height: 38px;
    padding: 0 3px;
    border-radius: 12px;
  }

  .p8Mj-OQiWx4- {
    width: 30px;
    height: 30px;
    border-radius: 10px;
  }

  .DjOIN580Jdo- {
    display: none;
  }

  ._3vpMk66b1Ck- {
    display: none;
  }

  ._9hUx-UPQOYE- {
    width: 38px;
    min-width: 38px;
    min-height: 38px;
    padding: 0;
    border-radius: 11px;
  }

  .smVBMgCD76g- {
    display: block;
    width: 18px;
    height: 18px;
  }

  .Ft8Hx8ubUDw- {
    display: none;
  }
}
}

@media not all and ( (min-width: 901px) and (max-width: 1199px)) {

@media screen and (color:2147477350) {
  .cuqsAantWaY- {
    padding-left: calc(var(--sidebar-width) + 12px);
    padding-right: 12px;
    gap: 8px;
  }

  .APTBxEsj3y8- {
    gap: 8px;
    margin-left: 4px;
  }

  .NoyJsRSmHWw- {
    width: clamp(176px, 24vw, 250px);
    padding: 0 10px;
    border-radius: 12px;
  }

  .Z2R2D8UF-Ys- {
    height: 36px;
  }

  .W4bOWgOJ3bE- {
    gap: 6px;
  }

  .PyaO3rTD54A- {
    width: 38px;
    height: 38px;
    min-height: 38px;
    border-radius: 11px;
  }

  .tFlYIvdGRkY- {
    width: 38px;
    min-width: 38px;
    padding: 0;
  }

  ._0jKcIbaNMZU- {
    display: none;
  }

  .o-wtBy-dvKc- {
    width: 38px;
    min-width: 38px;
    height: 38px;
    padding: 0 3px;
    border-radius: 12px;
  }

  .p8Mj-OQiWx4- {
    width: 30px;
    height: 30px;
    border-radius: 10px;
  }

  .DjOIN580Jdo- {
    display: none;
  }

  ._3vpMk66b1Ck- {
    display: none;
  }

  ._9hUx-UPQOYE- {
    width: 38px;
    min-width: 38px;
    min-height: 38px;
    padding: 0;
    border-radius: 11px;
  }

  .smVBMgCD76g- {
    display: block;
    width: 18px;
    height: 18px;
  }

  .Ft8Hx8ubUDw- {
    display: none;
  }
}
}

@media screen and (max-width: 900px) {
  .gwXR-NK-8O0- {
    font-size: var(--font-size-xs);
    padding: var(--spacing-xs) var(--spacing-sm);
    min-height: 28px;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
  }

  .hzAvIlwixBU- {
    white-space: normal;
    word-break: break-word;
  }

  .Ftj9KigLOFM- {
    font-size: 10px;
    padding: 2px var(--spacing-xs);
  }

  .cuqsAantWaY- {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) auto;
    padding-left: 10px;
    padding-right: 10px;
    gap: 8px;
    transition: top 0.2s ease;
  }

  .xWmwMly9f2k- {
    top: 28px;
  }

  .NoyJsRSmHWw- {
    width: auto;
    margin-left: 0;
    min-width: 0;
    padding: 0 10px;
  }

  .DjOIN580Jdo-,
  ._9hUx-UPQOYE- {
    display: none;
  }

  ._3vpMk66b1Ck- {
    display: none;
  }

  .o-wtBy-dvKc- {
    width: 40px;
    min-width: 40px;
    max-width: 40px;
    padding: 0;
    gap: 0;
  }

  .W4bOWgOJ3bE- {
    flex-shrink: 0;
    gap: 6px;
    min-width: max-content;
  }
}

@media screen and (max-width: 380px) {
  .cuqsAantWaY- {
    grid-template-columns: 38px minmax(0, 1fr) auto;
    padding-left: 8px;
    padding-right: 8px;
    gap: 6px;
  }

  .dtHgJ6DnXdI-,
  .PyaO3rTD54A-,
  .o-wtBy-dvKc- {
    width: 38px;
    min-width: 38px;
    max-width: 38px;
    height: 38px;
    min-height: 38px;
  }

  .NoyJsRSmHWw- {
    padding: 0 9px;
  }

  .NoyJsRSmHWw- svg {
    margin-right: 8px;
  }

  .p8Mj-OQiWx4- {
    width: 30px;
    height: 30px;
    border-radius: 10px;
  }
}
.fhFAEEfTNRk- {
  --padding: var(--spacing-md);

  width: 100%;
  box-sizing: border-box;
  padding-top: calc(var(--header-height) + var(--emulation-banner-height, 0px));
  padding-left: calc(var(--sidebar-width) + var(--padding));
  padding-bottom: calc(var(--footer-height) + var(--padding));
  background: var(--layout-bg);
  height: 100%;
  /* fix #5: sync with sidebar width transition */
  transition: padding-left 0.05s linear;

  @media (max-width: 900px) {
    --padding: 0px;
    transition: none;
  }
}

._0Jy6NayRZLE- {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding-top: 18px;
  padding-bottom: 12px;
  overflow-y: auto;
  scrollbar-gutter: stable;

  /* Стилизация скроллбара для Webkit браузеров */
  scrollbar-width: thin;
  scrollbar-color: var(--icon-grey) transparent;
}

/* Стилизация скроллбара для Webkit браузеров (Chrome, Safari, Edge) */
._0Jy6NayRZLE-::-webkit-scrollbar {
  width: 8px;
}

._0Jy6NayRZLE-::-webkit-scrollbar-track {
  background: transparent;
  border-radius: var(--radius-sm);
}

._0Jy6NayRZLE-::-webkit-scrollbar-thumb {
  background: var(--icon-grey);
  border-radius: var(--radius-sm);
  transition: background-color 0.2s ease;
}

._0Jy6NayRZLE-::-webkit-scrollbar-thumb:hover {
  background: var(--accent-blue);
}

/* Стилизация скроллбара для Firefox */
._0Jy6NayRZLE- {
  scrollbar-width: thin;
  scrollbar-color: var(--icon-grey) transparent;
}

@media (max-width: 900px) {
  .fhFAEEfTNRk- {
    padding-bottom: 58px;
  }

  ._0Jy6NayRZLE- {
    padding: 10px 6px 8px;
    scrollbar-gutter: auto;
  }

  ._0Jy6NayRZLE-[data-mobile-full-bleed="true"] {
    padding: 0;
    scrollbar-gutter: auto;
  }
}
.M2xi8of-wUY- {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: calc(var(--header-height) + var(--emulation-banner-height, 0px));
  height: calc(100% - var(--header-height) - var(--emulation-banner-height, 0px));
  width: var(--sidebar-width);
  overflow: hidden;
  padding: 12px 8px;
  background: var(--layout-sidebar-bg);
  border-right: 1px solid var(--layout-header-border);
  z-index: 1001;
  transition: width 0.05s linear;
}

.M2xi8of-wUY-:not(._2wNicmL6h-8-) ._7an-Uov3mT8-,
.M2xi8of-wUY-:not(._2wNicmL6h-8-) .NXBb6MzNqjY- {
  justify-content: center;
  padding-inline: 0;
  gap: 0;
}

.M2xi8of-wUY-:not(._2wNicmL6h-8-) ._7an-Uov3mT8-:hover {
  transform: none;
}

.GLuvX6HOlTI- {
  box-shadow: var(--shadow-md);
}

._3pEGHbetqxs- {
  transform: translateX(0);
  box-shadow: var(--shadow-md);
}

._2wNicmL6h-8- .eS9EoDW9Yr0-,
._2wNicmL6h-8- .curOBLzLtfo-,
._2wNicmL6h-8- .gBAtMANf9-Y- {
  max-width: 230px;
  opacity: 1;
  transform: translateX(0);
  transition:
    opacity 0.18s ease 0.08s,
    max-width 0.2s ease 0.05s,
    transform 0.2s ease 0.05s;
  pointer-events: auto;
}

._2wNicmL6h-8- ._0QBDowmh9FQ- {
  max-width: 20px;
  opacity: 0.74;
  transition:
    max-width 0.2s ease 0.05s,
    opacity 0.15s ease 0.1s,
    transform 0.2s ease;
  pointer-events: auto;
}

.NXMZWOX6VDw- {
  position: fixed;
  inset: 0;
  background-color: var(--surface-overlay);
  backdrop-filter: blur(4px);
  z-index: 1000;
}

.z-5FRogjUlQ- {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
}

.z-5FRogjUlQ-::-webkit-scrollbar {
  display: none;
}

.z-5FRogjUlQ- svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.lEi7s89anUU- {
  flex-shrink: 0;
  display: flex;
  border-bottom: 1px solid var(--layout-header-border);
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.NXBb6MzNqjY- {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 40px;
  padding: 8px 10px;
  border-radius: 12px;
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
  font-weight: 700;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background-color 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease,
    padding-inline 0.2s ease,
    gap 0.2s ease;
  text-align: left;
}

.NXBb6MzNqjY-:hover {
  color: var(--font-color);
  background: var(--layout-control-bg-hover);
  border-color: var(--layout-header-border);
}

.k-Ed0vpjcJM- {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gBAtMANf9-Y- {
  color: inherit;
  white-space: nowrap;
  overflow: hidden;
  max-width: 0;
  opacity: 0;
  transform: translateX(-6px);
  transition:
    opacity 0.1s ease,
    max-width 0.15s ease,
    transform 0.1s ease;
  pointer-events: none;
}

.cObJ73LTLnk- {
  position: relative;
  display: none;
  margin-bottom: 6px;
}

.mLkyp4qeZPI- {
  display: block;
  margin: 16px 8px 8px;
  padding-top: 14px;
  border-top: 1px solid var(--layout-header-border);
  color: var(--text-muted);
  font-size: var(--font-size-xs);
  line-height: 16px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  opacity: 0;
  max-width: 0;
  transition:
    opacity 0.18s ease,
    max-width 0.2s ease;
}

._2wNicmL6h-8- .mLkyp4qeZPI- {
  opacity: 1;
  max-width: 230px;
}

.G-FPnSK4asE- {
  display: block;
}

.DIzmoP2e9h8- {
  margin-top: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--layout-header-border);
}

.Vh4A3p5degc- {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 40px;
  padding: 8px 12px 8px 18px;
  border: 0;
  border-radius: 10px;
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  transition:
    color 0.15s ease,
    background-color 0.15s ease;
}

.Vh4A3p5degc-:hover {
  color: var(--text-secondary);
  background: var(--layout-control-bg-hover);
}

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

.vrPgzhnBSLI- {
  overflow: hidden;
  font-size: var(--font-size-xs);
  line-height: 16px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.KL99mhcYOrw- {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: inherit;
  opacity: 0.72;
  transform: rotate(-90deg);
  transition: transform 0.2s ease;
}

.BfN8uF8w1h0- {
  transform: rotate(0deg);
}

.LzmKGDwwEzA- {
  overflow: hidden;
  max-height: 0;
  padding-top: 0;
  transition:
    max-height 0.2s ease,
    padding-top 0.2s ease;
}

.A1FfpHtAyqI- {
  max-height: 3000px;
  padding-top: 4px;
}

.conSiZ3y-EE- {
  text-decoration: none;
  width: 100%;
}

._7an-Uov3mT8- {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  box-sizing: border-box;
  width: 100%;
  min-height: 46px;
  padding: 5px 10px;
  border-radius: 12px;
  color: var(--text-secondary);
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  border: 0;
  overflow: hidden;
  transition:
    color 0.15s ease,
    background-color 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.18s ease,
    padding-inline 0.2s ease,
    gap 0.2s ease;
}

._7an-Uov3mT8-:hover {
  color: var(--font-color);
  background: var(--layout-control-bg-hover);
}

._9J8s-L-UcQI- {
  width: 100%;
  height: 44px;
  min-height: 44px;
}

.q38V2pc-l-s-,
.n4Jg-hGXpXg- {
  color: var(--white);
  background: var(--layout-sidebar-active-bg);
  box-shadow: 0 14px 28px color-mix(in srgb, var(--accent-blue) 24%, transparent);
}

.q38V2pc-l-s-:hover,
.n4Jg-hGXpXg-:hover {
  color: var(--white);
  background: var(--layout-sidebar-active-bg);
}

.nFT5c8tggo8- {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 12px;
  color: var(--white);
  background: var(--layout-sidebar-icon-bg);
  box-shadow: none;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

._7an-Uov3mT8-[data-tone="home"] .nFT5c8tggo8- {
  background: linear-gradient(135deg, #60a5fa 0%, #8b5cf6 100%);
}

._7an-Uov3mT8-[data-tone="project"] .nFT5c8tggo8-,
.R3m2NCLAwf0-[data-tone="project"] {
  background: linear-gradient(135deg, #38bdf8 0%, #2563eb 100%);
}

._7an-Uov3mT8-[data-tone="client"] .nFT5c8tggo8-,
.R3m2NCLAwf0-[data-tone="client"] {
  background: linear-gradient(135deg, #a78bfa 0%, #ec4899 100%);
}

._7an-Uov3mT8-[data-tone="request"] .nFT5c8tggo8-,
.R3m2NCLAwf0-[data-tone="request"] {
  background: linear-gradient(135deg, #f97316 0%, #facc15 100%);
}

._7an-Uov3mT8-[data-tone="people"] .nFT5c8tggo8-,
.R3m2NCLAwf0-[data-tone="people"] {
  background: linear-gradient(135deg, #818cf8 0%, #6366f1 100%);
}

._7an-Uov3mT8-[data-tone="freelancer"] .nFT5c8tggo8-,
.R3m2NCLAwf0-[data-tone="freelancer"] {
  background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
}

._7an-Uov3mT8-[data-tone="reference"] .nFT5c8tggo8-,
.R3m2NCLAwf0-[data-tone="reference"] {
  background: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%);
}

._7an-Uov3mT8-[data-tone="document"] .nFT5c8tggo8-,
.R3m2NCLAwf0-[data-tone="document"] {
  background: linear-gradient(135deg, #60a5fa 0%, #22d3ee 100%);
}

._7an-Uov3mT8-[data-tone="finance"] .nFT5c8tggo8-,
.R3m2NCLAwf0-[data-tone="finance"] {
  background: linear-gradient(135deg, #22c55e 0%, #84cc16 100%);
}

._7an-Uov3mT8-[data-tone="call"] .nFT5c8tggo8-,
.R3m2NCLAwf0-[data-tone="call"] {
  background: linear-gradient(135deg, #fb923c 0%, #ef4444 100%);
}

._7an-Uov3mT8-[data-tone="office"] .nFT5c8tggo8-,
.R3m2NCLAwf0-[data-tone="office"] {
  background: linear-gradient(135deg, #2dd4bf 0%, #0ea5e9 100%);
}

._7an-Uov3mT8-[data-tone="notify"] .nFT5c8tggo8-,
.R3m2NCLAwf0-[data-tone="notify"] {
  background: linear-gradient(135deg, #fb7185 0%, #e11d48 100%);
}

._7an-Uov3mT8-[data-tone="admin"] .nFT5c8tggo8-,
.R3m2NCLAwf0-[data-tone="admin"] {
  background: linear-gradient(135deg, #8b5cf6 0%, #d946ef 100%);
}

._7an-Uov3mT8-[data-tone="add"] .nFT5c8tggo8-,
.R3m2NCLAwf0-[data-tone="add"] {
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
}

._7an-Uov3mT8-:hover .nFT5c8tggo8- {
  transform: scale(1.06) rotate(3deg);
}

.q38V2pc-l-s- .nFT5c8tggo8-,
.n4Jg-hGXpXg- .nFT5c8tggo8- {
  background: var(--layout-sidebar-active-icon-bg);
  box-shadow: none;
}

.nFT5c8tggo8- svg,
.q38V2pc-l-s- svg,
.n4Jg-hGXpXg- svg {
  display: block;
  stroke: currentColor;
}

.eS9EoDW9Yr0-,
.curOBLzLtfo- {
  color: inherit;
  font-size: var(--font-size-sm);
  line-height: 20px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 0;
  opacity: 0;
  transform: translateX(-6px);
  transition:
    opacity 0.1s ease,
    max-width 0.15s ease,
    transform 0.1s ease;
  pointer-events: none;
}

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

._0QBDowmh9FQ- {
  display: flex;
  align-items: center;
  color: inherit;
  overflow: hidden;
  max-width: 0;
  opacity: 0;
  margin-left: auto;
  transition:
    transform 0.2s ease,
    max-width 0.15s ease,
    opacity 0.1s ease;
  pointer-events: none;
}

.wcFHqDRmP84- {
  transform: rotate(180deg);
}

.YK8anwdmX4Q- {
  overflow: hidden;
  max-height: 0;
  padding-top: 0;
  transition:
    max-height 0.2s ease,
    padding-top 0.2s ease;
}

.vJS-8y6z6TQ- {
  max-height: 2000px;
  padding-top: 4px;
}

._4Ba-J-Gysyo- {
  position: relative;
  box-sizing: border-box;
  padding: 6px 8px 6px 48px;
  border-radius: 10px;
  color: var(--text-secondary);
  transition:
    background-color 0.15s ease,
    color 0.15s ease;
}

._4Ba-J-Gysyo- a {
  display: flex;
  align-items: center;
  gap: 9px;
  color: inherit;
  text-decoration: none;
  font-size: var(--font-size-sm);
  line-height: 18px;
  white-space: pre-line;
  opacity: 0;
  transform: translateX(-6px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

._4Ba-J-Gysyo-:hover {
  color: var(--font-color);
  background: var(--layout-control-bg-hover);
}

.q7yDppIzjnM- {
  color: var(--accent-blue);
  background: var(--accent-soft);
}

.q7yDppIzjnM- a {
  color: var(--accent-blue);
  font-weight: 700;
}

._2wNicmL6h-8- ._4Ba-J-Gysyo- a {
  opacity: 1;
  transform: translateX(0);
}

.R3m2NCLAwf0- {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  background: linear-gradient(135deg, #22d3ee 0%, #3b82f6 100%);
}

.R3m2NCLAwf0- svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}

._5rYYZ5MiYDE- {
  position: fixed;
  left: -9999px;
  top: 0;
  width: 1px;
  height: 1px;
  visibility: hidden;
  pointer-events: none;
}

.xFzS-dj5g7Y- {
  position: fixed;
  left: -9999px;
  top: 0;
  visibility: hidden;
  pointer-events: none;
  width: max-content;
  display: flex;
  flex-direction: column;
  padding: 0 8px;
}

._3edGlgCKU6I- {
  padding-inline: 10px !important;
  gap: 12px !important;
  justify-content: flex-start !important;
}

.xFzS-dj5g7Y- .eS9EoDW9Yr0-,
.xFzS-dj5g7Y- ._0QBDowmh9FQ-,
.xFzS-dj5g7Y- ._4Ba-J-Gysyo- a {
  max-width: none;
  overflow: visible;
  opacity: 1;
  transform: none;
  transition: none;
  pointer-events: none;
}

@media screen and (max-width: 900px) {
  .M2xi8of-wUY- {
    top: calc(var(--header-height) + var(--emulation-banner-height, 0px));
    height: calc(100% - var(--header-height) - var(--emulation-banner-height, 0px));
    width: 270px;
    padding: 12px 8px;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    box-shadow: none;
  }

  .M2xi8of-wUY-:not(._2wNicmL6h-8-) ._7an-Uov3mT8-,
  .M2xi8of-wUY-:not(._2wNicmL6h-8-) .NXBb6MzNqjY- {
    padding-inline: 10px;
    gap: 12px;
  }

  ._3pEGHbetqxs- {
    transform: translateX(0);
    box-shadow: var(--shadow-md);
  }

  .M2xi8of-wUY- .eS9EoDW9Yr0-,
  .M2xi8of-wUY- .curOBLzLtfo-,
  .M2xi8of-wUY- .gBAtMANf9-Y- {
    max-width: 230px;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }

  .M2xi8of-wUY- ._0QBDowmh9FQ- {
    max-width: 20px;
    opacity: 0.74;
    pointer-events: auto;
  }

  ._4Ba-J-Gysyo- a {
    opacity: 1;
    transform: translateX(0);
  }

  .DIzmoP2e9h8- {
    margin-top: 16px;
    padding-top: 20px;
  }
}
.r1leFDXImig- {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  overflow-x: hidden;
}

.r1leFDXImig-[data-variant="tasks-only"] {
  gap: var(--spacing-md);
  height: 100%;
  min-height: 0;
}

.s300CZDeEyQ- {
  flex: 1;
  min-height: 0;
  margin-inline: 12px;
}

@media (max-width: 900px) {
  .r1leFDXImig-[data-variant="tasks-only"] {
    height: auto;
    min-height: 100%;
  }

  .s300CZDeEyQ- {
    flex: 0 0 auto;
    margin-inline: 8px;
  }
}
@keyframes oQpjuNkV7Bo- {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.25;
  }
}

/* ── UserProjects skeleton ─────────────────────────── */

.AP8Fh56N6sI- {
  display: flex;
  gap: 10px;

  @media (max-width: 900px) {
    flex-direction: column;
  }
}

.w-MC99IbzWw- {
  display: flex;
  align-items: center;
  margin-right: 10px;
}

.vjlxTGGEz9E- {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--bg-main);
  animation: oQpjuNkV7Bo- 1.5s ease-in-out infinite;
  margin-right: 10px;
  flex-shrink: 0;

  @media (max-width: 900px) {
    width: 30px;
    height: 30px;
  }
}

.lcMMy4RsIvE- {
  width: 90px;
  height: 14px;
  border-radius: var(--radius-sm);
  background-color: var(--bg-main);
  animation: oQpjuNkV7Bo- 1.5s ease-in-out infinite;
}

/* ── DashboardWidgets skeleton ─────────────────────── */

.mdKbYwPTMCM- {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;

  @media (max-width: 900px) {
    grid-template-columns: 1fr;
  }
}

.oC9ZSxqza6Q- {
  height: 336px;
  border-radius: var(--radius-lg);
  background-color: var(--bg-fill);
  animation: oQpjuNkV7Bo- 1.5s ease-in-out infinite;
}
.Kne2Mu9MDJ8- {
  width: 100%;
  position: relative;
  overflow: visible;
}

/* Fade in the grid after layout is positioned to avoid flash */
.Kne2Mu9MDJ8-:not([data-layout-ready="true"]) .zfxgqfW8kGs- {
  opacity: 0;
  pointer-events: none;
}

.Kne2Mu9MDJ8-[data-layout-ready="true"] .zfxgqfW8kGs- {
  opacity: 1;
  transition: opacity 0.2s ease-out;
}

.zfxgqfW8kGs- {
  width: 100%;
}

/* Disable all transitions while width is stabilising (initial mount + any layout shift) */
.Kne2Mu9MDJ8-[data-suppress-transitions="true"] .sCqV3RLvvDc-,
.Kne2Mu9MDJ8-[data-suppress-transitions="true"] .react-grid-item {
  transition: none !important;
}

/* Also keep wrapper transitions off before grid is visible */
.Kne2Mu9MDJ8-:not([data-layout-ready="true"]) .sCqV3RLvvDc- {
  transition: none !important;
}

.sCqV3RLvvDc- {
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--surface-1) 96%, transparent),
    color-mix(in srgb, var(--surface-1) 100%, transparent)
  );
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03);
  transition:
    transform 0.18s ease-out,
    box-shadow 0.18s ease-out,
    border-color 0.18s ease-out,
    background-color 0.18s ease-out;
}

.sCqV3RLvvDc-[data-widget-id="action-bar"] {
  background: linear-gradient(180deg, rgba(33, 43, 61, 0.96), rgba(28, 35, 52, 0.98));
  border-color: color-mix(in srgb, #7c3aed 58%, transparent);
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, #8b5cf6 42%, transparent),
    0 0 0 1px rgba(124, 58, 237, 0.08);
}

html[theme="light"] .sCqV3RLvvDc-[data-widget-id="action-bar"] {
  background: linear-gradient(180deg, var(--surface-elevated), var(--surface-2));
  border-color: color-mix(in srgb, var(--accent-blue) 18%, var(--card-border));
  box-shadow: var(--shadow-sm);
}

html[theme="dark"] .sCqV3RLvvDc-[data-widget-id="action-bar"] {
  background: linear-gradient(180deg, rgba(33, 43, 61, 0.96), rgba(28, 35, 52, 0.98));
  border-color: color-mix(in srgb, #7c3aed 58%, transparent);
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, #8b5cf6 42%, transparent),
    0 0 0 1px rgba(124, 58, 237, 0.08);
}

.sCqV3RLvvDc-:hover {
  border-color: var(--border-strong);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
}

.sCqV3RLvvDc-[data-dragging="true"] {
  transform: scale(1.01);
  border-color: color-mix(in srgb, var(--accent-blue) 44%, transparent);
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.18);
  z-index: 100;
}

.eY7y7Vi69NI- {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 10px 14px 0;
  cursor: grab;
  min-height: auto;
  touch-action: none;
  user-select: none;
}

.eY7y7Vi69NI-:active {
  cursor: grabbing;
}

.z15m8phENJU- {
  display: flex;
  width: 24px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='16' viewBox='0 0 24 16'%3E%3Ccircle cx='4' cy='4' r='2' fill='%239ca3af'/%3E%3Ccircle cx='12' cy='4' r='2' fill='%239ca3af'/%3E%3Ccircle cx='20' cy='4' r='2' fill='%239ca3af'/%3E%3Ccircle cx='4' cy='12' r='2' fill='%239ca3af'/%3E%3Ccircle cx='12' cy='12' r='2' fill='%239ca3af'/%3E%3Ccircle cx='20' cy='12' r='2' fill='%239ca3af'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.45;
  transition:
    opacity 0.1s ease-out,
    transform 0.15s ease-out;
}

.sCqV3RLvvDc-:hover .z15m8phENJU- {
  opacity: 1;
  transform: scale(1.04);
}

._7n09cQqX-Hg- {
  flex: 1;
  padding: 0 20px 20px;
  overflow: auto;
  min-height: 0;
}

.sCqV3RLvvDc-[data-widget-id="action-bar"] .eY7y7Vi69NI- {
  display: none;
}

.sCqV3RLvvDc-[data-widget-id="action-bar"] ._7n09cQqX-Hg- {
  padding: 0 24px;
  overflow: hidden;
}

.sCqV3RLvvDc-[data-dragging="true"] ._7n09cQqX-Hg- {
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 900px) {
  .sCqV3RLvvDc- {
    border-radius: 14px;
  }

  .eY7y7Vi69NI- {
    padding: 8px 12px 0;
  }

  ._7n09cQqX-Hg- {
    padding: 0 12px 14px;
  }

  .sCqV3RLvvDc-[data-widget-id="action-bar"] ._7n09cQqX-Hg- {
    padding: 8px 10px;
  }
}

/* Override default react-grid-layout placeholder */
.react-grid-placeholder {
  background-color: var(--accent-blue) !important;
  opacity: 0.15 !important;
  border-radius: var(--radius-lg);
  transition: none !important;
}

/* Faster transitions for grid items during interaction */
.react-grid-item {
  transition: transform 0.1s ease-out !important;
}

.react-grid-item.react-draggable-dragging {
  transition: none !important;
  z-index: 100;
}

.react-grid-item.resizing {
  transition: none !important;
}

/* Resize handle styling */
.react-resizable-handle {
  position: absolute;
  width: 20px;
  height: 20px;
  bottom: 0;
  right: 0;
  cursor: se-resize;
  opacity: 0;
  transition: opacity 0.1s ease-out;
}

.sCqV3RLvvDc-:hover .react-resizable-handle {
  opacity: 1;
}

.react-resizable-handle::after {
  content: "";
  position: absolute;
  right: 3px;
  bottom: 3px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--icon-grey);
  border-bottom: 2px solid var(--icon-grey);
}

/* Widget specific table adjustments */
._7n09cQqX-Hg- [data-table-min-width] {
  height: 100%;
  max-height: none;
}
.fdPaXEqOinc- {
  display: flex;
  width: 100%;
  height: 100%;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.O6vz0WQK65M- {
  --tone-start: #64748b;
  --tone-end: #94a3b8;
  --tone-bg-start: color-mix(in srgb, var(--tone-start) 16%, transparent);
  --tone-bg-end: color-mix(in srgb, var(--tone-end) 8%, transparent);
  --tone-shadow: color-mix(in srgb, var(--tone-start) 28%, transparent);

  display: flex;
  min-width: 0;
  gap: 8px;
}

.sYARuKkqHns- {
  --tone-start: #fb923c;
  --tone-end: #f59e0b;
}

.LitMSBWSF50- {
  --tone-start: #60a5fa;
  --tone-end: #8b5cf6;
}

.eJH7uwaVUCU- {
  --tone-start: #fb7185;
  --tone-end: #a855f7;
}

.CVlApLEiqqs-,
.jIaNgCSj-3g- {
  min-height: 56px;
  border: 0;
  border-radius: 12px;
  color: var(--white);
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    border-color 0.16s ease;
}

.CVlApLEiqqs- {
  display: flex;
  width: 216px;
  min-width: 0;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: linear-gradient(90deg, var(--tone-bg-start), var(--tone-bg-end));
  border: 2px solid color-mix(in srgb, var(--tone-start) 70%, transparent);
}

.CVlApLEiqqs-:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px var(--tone-shadow);
}

.UJf5MQk0haw- {
  display: inline-flex;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--tone-start), var(--tone-end));
  box-shadow: 0 7px 18px color-mix(in srgb, var(--tone-start) 34%, transparent);
}

.QADv9bmcw5I- {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  text-align: left;
}

.g2wacLdIPb0- {
  color: var(--tone-end);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.VoQOtwbXLNc- {
  margin-top: 4px;
  overflow: hidden;
  color: var(--text-secondary);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.P6MKdjPq-Ak- {
  display: none;
}

.jIaNgCSj-3g- {
  display: inline-flex;
  width: 56px;
  flex: 0 0 56px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--tone-start), var(--tone-end));
  box-shadow: 0 8px 20px var(--tone-shadow);
}

.jIaNgCSj-3g-:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px var(--tone-shadow);
}

.jIaNgCSj-3g-:disabled {
  cursor: not-allowed;
  filter: grayscale(1);
  opacity: 0.45;
  transform: none;
}

@media (max-width: 1100px) {
  .fdPaXEqOinc- {
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 720px) {
  .fdPaXEqOinc- {
    display: grid;
    height: 100%;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .O6vz0WQK65M- {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px;
    gap: 8px;
  }

  .CVlApLEiqqs- {
    width: auto;
    min-height: 0;
    padding: 7px 10px;
    border-width: 1px;
  }

  .UJf5MQk0haw- {
    width: 34px;
    height: 34px;
    border-radius: 9px;
  }

  .g2wacLdIPb0- {
    font-size: 16px;
  }

  .jIaNgCSj-3g- {
    width: 48px;
    min-height: 0;
    flex-basis: 48px;
  }
}
.SuAStr8ZBBw- {
  margin: 0;
  margin-bottom: 10px;
}

.DXlkbRZRebE- {
  h3 {
    margin: 0;
  }
}
._3agbKflJGVw- {
  margin: 0;
  margin-bottom: 10px;
}

.Vb9g16Br8zM- {
  color: inherit;
  text-decoration: none;
}
.cG9Zh905NTo- {
  width: 100%;
}

.Z3nTFaGqEjo- {
  text-align: left;
}
.ajPA51aAhjw- {
  color: var(--red);
}
._8aewY-0vA1o- {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  color: var(--text-primary);
}

.TT0IhkfHA1Y- {
  padding: 20px;
  background: color-mix(in srgb, var(--surface-1) 96%, transparent);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
}

.XJG5JygB7TQ- {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.MSf-hawcJMc- {
  display: flex;
  align-items: center;
  gap: 12px;
}

._5wtu-CDcZNY- {
  margin: 0;
  font-size: var(--font-size-headings-sm);
  line-height: 1.1;
  font-weight: 700;
  color: var(--text-primary);
}

._6-A4RQ1SS0A- {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0 0;
  color: var(--text-secondary);
  font-size: var(--font-size-xs);
}

.dPJCCKVA7Zc- {
  color: var(--green);
  font-weight: 700;
}

.sx98h7EQt-8- {
  display: grid;
  grid-template-columns: auto auto minmax(180px, 1fr);
  gap: 10px;
  align-items: center;
}

.IMqyFRGx8jI- {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: var(--surface-2);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  overflow-x: auto;
}

.skblQHeGMGQ-,
.MlZ-gOBv48s-,
.XNmreMc8fLg- {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 0;
  font: inherit;
  cursor: pointer;
  white-space: nowrap;
}

.skblQHeGMGQ- {
  min-height: 32px;
  padding: 7px 11px;
  color: var(--text-secondary);
  background: transparent;
  border-radius: 8px;
  transition:
    color 0.16s ease,
    background-color 0.16s ease,
    box-shadow 0.16s ease;
}

._1sTrNF8dcws- {
  color: var(--accent-blue);
  background: color-mix(in srgb, var(--surface-2) 88%, var(--accent-blue) 12%);
  box-shadow: none;
}

.MlZ-gOBv48s- {
  position: relative;
  min-height: 40px;
  padding: 0 13px;
  color: var(--text-secondary);
  background: var(--surface-2);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
}

._6SbdHF-REfg- {
  color: var(--accent-blue);
  border-color: color-mix(in srgb, var(--accent-blue) 34%, transparent);
  background: var(--accent-soft);
}

.WcIY-GfaHIA- {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent-blue);
}

.tvMgwinDpco- {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  color: var(--icon-grey);
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: 10px;
}

.tvMgwinDpco- input {
  width: 100%;
  min-width: 0;
  color: var(--text-primary);
  background: transparent;
  border: 0;
  outline: 0;
  font: inherit;
}

.tvMgwinDpco- input::placeholder {
  color: var(--text-secondary);
}

.fc9gEvthqW8- {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: var(--spacing-md);
  padding: 14px;
  background: var(--surface-2);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
}

.keqhHqkA6Vw- {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.keqhHqkA6Vw- .HCgQn25bYZc- {
  margin-bottom: 0;
}

.qJs4CfYP17Y- {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.HCgQn25bYZc- {
  margin-bottom: 8px;
  color: var(--text-secondary);
  font-size: var(--font-size-xs);
  font-weight: 700;
}

.gtKdLL4Tnxg- {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.mwno7Z61sjE- {
  --chip-accent: #64748b;
  --chip-accent-strong: #475569;

  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 5px 10px;
  color: var(--text-secondary);
  background: var(--surface-1);
  border: 2px solid var(--border-subtle);
  border-radius: 8px;
  cursor: pointer;
  transition:
    color 0.16s ease,
    border-color 0.16s ease,
    background-color 0.16s ease;
}

.mwno7Z61sjE-[data-tone="system"] {
  --chip-accent: #6366f1;
  --chip-accent-strong: #a855f7;
}

.mwno7Z61sjE-[data-tone="project"],
.mwno7Z61sjE-[data-tone="info"] {
  --chip-accent: #3b82f6;
  --chip-accent-strong: #06b6d4;
}

.mwno7Z61sjE-[data-tone="non-project"],
.mwno7Z61sjE-[data-tone="office-month"],
.mwno7Z61sjE-[data-tone="muted"] {
  --chip-accent: #64748b;
  --chip-accent-strong: #94a3b8;
}

.mwno7Z61sjE-[data-tone="client"],
.mwno7Z61sjE-[data-tone="contractor"],
.mwno7Z61sjE-[data-tone="danger"] {
  --chip-accent: #ec4899;
  --chip-accent-strong: #f43f5e;
}

.mwno7Z61sjE-[data-tone="free"] {
  --chip-accent: #22c55e;
  --chip-accent-strong: #10b981;
}

.mwno7Z61sjE-[data-tone="warning"] {
  --chip-accent: #f97316;
  --chip-accent-strong: #f59e0b;
}

.mwno7Z61sjE-[data-tone="violet"] {
  --chip-accent: #8b5cf6;
  --chip-accent-strong: #ec4899;
}

.NB6UiPD4JJE- {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.DiMaPS7jwiw- {
  display: inline-flex;
  width: 15px;
  height: 15px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--white);
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  transition:
    background-color 0.16s ease,
    border-color 0.16s ease;
}

.gcCePk3XLHI- {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(90deg, var(--chip-accent) 0%, var(--chip-accent-strong) 100%);
}

.gcCePk3XLHI- .DiMaPS7jwiw- {
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.62);
}

.Ynt-QJR4Nnk- {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 38px;
  padding: 0 12px;
  color: var(--text-secondary);
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: 9px;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.Ynt-QJR4Nnk-[aria-expanded="false"] svg {
  transform: rotate(180deg);
}

.Ynt-QJR4Nnk- svg {
  transition: transform 0.16s ease;
}

.XNmreMc8fLg- {
  min-height: 32px;
  padding: 0 10px;
  color: var(--accent-blue);
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
}

.JfNd2q5xsy8- {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  cursor: pointer;
}

._56iB103szfI- {
  display: flex;
  gap: 14px;
  min-height: 0;
  height: 100%;
  overflow-x: auto;
  padding-bottom: 8px;
}

._7NS4pv0-xTY- {
  display: flex;
  flex: 1 0 270px;
  flex-direction: column;
  min-width: 270px;
  min-height: 0;
  border-radius: 12px 12px 0 0;
  overflow: visible;
  background: transparent;
  border: 0;
}

.BIooF3S6X4E- {
  --column-accent: #64748b;
  --column-accent-strong: #94a3b8;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 42px;
  padding: 0 13px;
  color: var(--white);
  font-weight: 700;
  background: linear-gradient(90deg, var(--column-accent) 0%, var(--column-accent-strong) 100%);
  border-radius: 10px 10px 0 0;
}

._0qxTNWDFpJY- {
  --column-accent: #f43f5e;
  --column-accent-strong: #ec4899;
}

._7LLBtiUTYMA- {
  --column-accent: #f97316;
  --column-accent-strong: #f59e0b;
}

.u50gO5H2N44- {
  --column-accent: #3b82f6;
  --column-accent-strong: #06b6d4;
}

._3IGzeTHFrjU- {
  --column-accent: #8b5cf6;
  --column-accent-strong: #ec4899;
}

._43EF3vmfbbA- {
  --column-accent: #64748b;
  --column-accent-strong: #94a3b8;
}

._4BBg5KK9WKo- {
  display: inline-flex;
  min-width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  padding: 0 7px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.22);
  font-size: var(--font-size-xs);
}

.Fd04xoZ2HcQ- {
  display: flex;
  flex: 1;
  min-height: 180px;
  flex-direction: column;
  gap: 10px;
  overflow: auto;
  padding: 10px 0;
  scrollbar-width: none;
}

.Fd04xoZ2HcQ-::-webkit-scrollbar {
  display: none;
}

.zux4f7HZgjQ- {
  --card-default-border: var(--border-subtle);
  --card-hover-border: color-mix(in srgb, var(--accent-blue) 28%, var(--border-subtle));
  --card-type-border: var(--card-default-border);
  --card-bg: var(--surface-2);

  position: relative;
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 12px;
  color: var(--text-primary);
  background: var(--card-bg);
  border: 2px solid var(--card-hover-border);
  border-left-width: 4px;
  border-radius: 10px;
  text-decoration: none;
  transition:
    border-color 0.16s ease,
    background-color 0.16s ease;
}

.zux4f7HZgjQ-:hover {
  border-color: var(--card-default-border);
  border-left-color: var(--card-type-border);
  background: var(--card-bg);
}

.RZJ5LvjZmNU- {
  --card-type-border: #3b82f6;
}

.JqdDSurY44E- {
  --card-type-border: #6366f1;
}

.DP-d16GWcfo-,
.uqdPn1UJuGo- {
  --card-type-border: #64748b;
}

.iXNBP3TuEPk-,
.VbtG1ge3wHs- {
  --card-type-border: #ec4899;
}

._3-tn8rLFYHc- {
  --card-type-border: #8b5cf6;
}

.h-iJP2dfjrM- {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.cXCESPG3AjA- {
  color: var(--text-secondary);
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: var(--font-size-xs);
  font-weight: 700;
}

.J4GYbL8zMsA-,
._9kE8NsSjJAM- {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  max-width: 100%;
  min-height: 24px;
  padding: 3px 7px;
  border-radius: 7px;
  font-size: var(--font-size-xxs);
  font-weight: 700;
  line-height: 1.2;
}

.J4GYbL8zMsA- {
  gap: 5px;
  justify-self: start;
  color: var(--text-primary);
  background: var(--surface-2);
  border: 1px solid var(--border-subtle);
}

.PvpIwcGhCAY- {
  color: var(--red);
  background: var(--danger-soft);
  border-color: color-mix(in srgb, var(--red) 34%, transparent);
}

._9kE8NsSjJAM- {
  justify-self: end;
  color: var(--accent-blue);
  background: var(--accent-soft);
}

._2qVfQdMmlgg- {
  display: -webkit-box;
  overflow: hidden;
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

._30vyI3BOaYQ- {
  color: var(--text-secondary);
  font-size: var(--font-size-xs);
  font-weight: 700;
}

.WM-A6yHm8lE- {
  color: var(--text-secondary);
  font-size: var(--font-size-xs);
  font-weight: 700;
}

.cMo5wEx6e-k- {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
}

.BGJ7ygZ1qP4- {
  background: color-mix(in srgb, #3b82f6 10%, var(--surface-1));
}

.vx-r-rI9vJo- {
  background: color-mix(in srgb, #64748b 10%, var(--surface-1));
}

.nWAf0ysjdww- {
  background: color-mix(in srgb, #ec4899 10%, var(--surface-1));
}

.rdhbn0k8hlg- {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  font-size: var(--font-size-xs);
  font-weight: 700;
}

.GvTP8K7JNQ8- {
  color: var(--text-primary);
  font-weight: 700;
}

.e7VtwRF8lao- {
  color: var(--text-secondary);
  font-size: var(--font-size-xs);
}

.iMBs22O7CGk- {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.H1n-tDuNyrw- {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 8px;
}

._2W5RJ2Dq57Q- {
  display: inline-flex;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #38bdf8 0%, #8b5cf6 100%);
  border-radius: 999px;
  font-size: var(--font-size-xxs);
  font-weight: 800;
}

.n0dOFhD26Zg- {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.B-foOsN-DaU- {
  color: var(--text-secondary);
  font-size: var(--font-size-xxs);
}

.-VAzWUf-X6o- {
  overflow: hidden;
  color: var(--text-primary);
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.c7yxHRgqLh0- {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
  overflow: auto;
  padding-bottom: 8px;
}

.I9-UVHRBdcY-,
._4GqO2U2euDc- {
  display: flex;
  min-height: 120px;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-align: center;
}

.DSMiqczEbws- {
  display: flex;
  gap: 14px;
  min-height: 260px;
  overflow: hidden;
}

.hHk2sBDeX3A- {
  flex: 1 0 270px;
}

.NAWkwDwbcGo-,
.Gf4kmV9yPr0- {
  background:
    linear-gradient(90deg, transparent, var(--skeleton-shimmer), transparent), var(--skeleton-base);
  background-size: 200% 100%;
  border-radius: 10px;
  animation: hmci4Zg9j8s- 1.5s infinite;
}

.NAWkwDwbcGo- {
  height: 42px;
  margin-bottom: 10px;
}

.Gf4kmV9yPr0- {
  height: 150px;
  margin-bottom: 10px;
}

@keyframes hmci4Zg9j8s- {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

@media (max-width: 1100px) {
  .sx98h7EQt-8- {
    grid-template-columns: 1fr auto;
  }

  .tvMgwinDpco- {
    grid-column: 1 / -1;
  }

  .fc9gEvthqW8- {
    gap: 12px;
  }
}

@media (min-width: 1200px) and (max-width: 1366px) {
  .h-iJP2dfjrM- {
    grid-template-columns: auto minmax(0, 1fr);
    row-gap: 6px;
  }

  ._9kE8NsSjJAM- {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 720px) {
  ._8aewY-0vA1o- {
    height: auto;
  }

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

  ._5wtu-CDcZNY- {
    font-size: 18px;
  }

  .TT0IhkfHA1Y- {
    padding: 12px;
    border-radius: 14px;
  }

  .sx98h7EQt-8- {
    grid-template-columns: 1fr;
  }

  .IMqyFRGx8jI-,
  .MlZ-gOBv48s- {
    width: 100%;
    min-width: 0;
  }

  .skblQHeGMGQ-,
  .MlZ-gOBv48s- {
    flex: 1;
  }

  .tvMgwinDpco- {
    min-height: 38px;
  }

  .fc9gEvthqW8- {
    padding: 12px;
  }

  .gtKdLL4Tnxg- {
    gap: 6px;
  }

  .mwno7Z61sjE- {
    min-height: 28px;
    padding: 4px 8px;
  }

  .h-iJP2dfjrM- {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .J4GYbL8zMsA-,
  ._9kE8NsSjJAM- {
    justify-self: start;
  }

  .iMBs22O7CGk- {
    grid-template-columns: 1fr;
  }

  ._56iB103szfI- {
    flex-direction: column;
    height: auto;
    min-height: 0;
    overflow-x: visible;
    padding-bottom: 0;
    gap: 12px;
  }

  ._7NS4pv0-xTY- {
    width: 100%;
    min-width: 0;
    flex: 0 0 auto;
  }

  .whfTcjzy25U- {
    display: none;
  }

  .Fd04xoZ2HcQ- {
    min-height: auto;
    overflow: visible;
    max-height: none;
    padding: 8px 0 0;
  }

  .zux4f7HZgjQ- {
    gap: 8px;
    padding: 10px;
    border-width: 1px;
    border-left-width: 3px;
  }

  .cMo5wEx6e-k- {
    padding: 8px;
  }
}
.trg8VLPEBhI- {
  background: var(--color-background);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  width: 100%;
  max-width: 850px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
}

._8zWlaiMlp2Q- {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid var(--color-border);
  width: 100%;
  box-sizing: border-box;
}

.frncfWrPYJA- {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  flex: 1;
  min-width: 0;
}

.WkbIhDMXXko- {
  color: var(--color-primary);
  flex-shrink: 0;
}

.o0Q9Tes1MAY- {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  flex-shrink: 0;
}

.ZcyCyceZgI0- {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.E3zWCvJAdlo- {
  color: var(--color-text-secondary);
  transition: color 0.2s ease;
}

._8zWlaiMlp2Q- h3 {
  margin: 0;
  font-size: var(--font-size-lg);
  font-weight: 600;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.gvM-FUcpEug- {
  display: none;
}

.hs1rq1Z7sHw- {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
}

.TEDDjzYnvkg- {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--spacing-lg) var(--spacing-md);
  text-align: center;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 2px dashed var(--color-border);
}

.wdwNEAezjyg- {
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-md);
  opacity: 0.6;
}

.TEDDjzYnvkg- h4 {
  margin: 0 0 var(--spacing-sm) 0;
  color: var(--color-text-secondary);
  font-size: var(--font-size-lg);
  font-weight: 500;
}

.TEDDjzYnvkg- p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

.mtEJXOVBW6Q- {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  overflow-y: auto;
  max-height: 400px;
  padding-right: var(--spacing-md);
  width: 100%;
  box-sizing: border-box;
}

.OOOsUayhqGw- {
  display: flex;
  align-items: center;
  padding: var(--spacing-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

.OOOsUayhqGw-:hover {
  background: var(--color-surface-hover);
  border-color: var(--color-border-hover);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.YExv2ZXn2No- {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--spacing-lg);
  height: var(--spacing-lg);
  background: var(--color-primary-subtle);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  margin-right: var(--spacing-md);
  flex-shrink: 0;
}

.cmzeaZN1nSQ- {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  min-width: 0;
}

.G-O4qcqvj94- {
  font-size: var(--font-size-sm);
  font-weight: 500;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.AnD7qwuXptM- {
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
}

.XnZRbPM7tmE- {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

.QN9FgRTTVS4- {
  display: flex;
  gap: var(--spacing-sm);
  flex-shrink: 0;
}

.jU21XltArg8- {
  color: var(--color-danger);
  transition: color 0.2s ease;
}

.jU21XltArg8-:hover {
  color: var(--color-danger-hover);
}

.ovMVZ1RS6RM- {
  margin-top: var(--spacing-lg);
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.Ol6Q3s8lA-s- {
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
}

@media (max-width: 900px) {
  .trg8VLPEBhI- {
    padding: var(--spacing-md);
    border-radius: 0;
    max-height: 90vh;
    min-height: auto;
    width: 100%;
    max-width: none;
  }

  ._8zWlaiMlp2Q- {
    flex-direction: column;
    align-items: stretch;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
  }

  .frncfWrPYJA- {
    justify-content: flex-start;
    text-align: left;
  }

  ._8zWlaiMlp2Q- h3 {
    font-size: var(--font-size-md);
  }

  .o0Q9Tes1MAY- {
    justify-content: stretch;
    width: 100%;
  }

  .ZcyCyceZgI0- {
    width: 100%;
    justify-content: center;
    padding: var(--spacing-md);
  }

  .mtEJXOVBW6Q- {
    max-height: 60vh;
    padding-right: 0;
  }

  .OOOsUayhqGw- {
    padding: var(--spacing-sm);
    flex-wrap: wrap;
    gap: var(--spacing-sm);
  }

  .cmzeaZN1nSQ- {
    flex: 1;
    min-width: 200px;
  }

  .G-O4qcqvj94- {
    font-size: var(--font-size-sm);
    line-height: 1.4;
  }

  .QN9FgRTTVS4- {
    flex-direction: row;
    gap: var(--spacing-xs);
    min-width: auto;
  }

  .TEDDjzYnvkg- {
    padding: var(--spacing-lg) var(--spacing-sm);
  }

  .TEDDjzYnvkg- h4 {
    font-size: var(--font-size-md);
  }
}

@media (max-width: 900px) {
  .trg8VLPEBhI- {
    padding: var(--spacing-sm);
    max-height: 95vh;
  }

  ._8zWlaiMlp2Q- {
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
  }

  .frncfWrPYJA- {
    gap: var(--spacing-sm);
  }

  .WkbIhDMXXko- {
    width: 20px;
    height: 20px;
  }

  ._8zWlaiMlp2Q- h3 {
    font-size: var(--font-size-sm);
  }

  .ZcyCyceZgI0- {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: var(--font-size-sm);
  }

  .mtEJXOVBW6Q- {
    gap: var(--spacing-sm);
    max-height: 65vh;
  }

  .OOOsUayhqGw- {
    padding: var(--spacing-xs) var(--spacing-sm);
    min-height: auto;
  }

  .YExv2ZXn2No- {
    width: 32px;
    height: 32px;
    margin-right: var(--spacing-sm);
  }

  .cmzeaZN1nSQ- {
    min-width: 0;
    flex: 1;
  }

  .G-O4qcqvj94- {
    font-size: var(--font-size-xs);
    line-height: 1.3;
  }

  .AnD7qwuXptM- {
    font-size: var(--font-size-xs);
  }

  .QN9FgRTTVS4- {
    gap: var(--spacing-xs);
  }

  .QN9FgRTTVS4- button {
    padding: var(--spacing-xs);
    min-width: 32px;
    height: 32px;
  }

  .TEDDjzYnvkg- {
    padding: var(--spacing-md) var(--spacing-sm);
  }

  .wdwNEAezjyg- {
    width: 32px;
    height: 32px;
  }

  .TEDDjzYnvkg- h4 {
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-xs);
  }

  .TEDDjzYnvkg- p {
    font-size: var(--font-size-xs);
    line-height: 1.4;
  }

  .ovMVZ1RS6RM- {
    margin-top: var(--spacing-sm);
    padding-top: var(--spacing-sm);
  }

  .Ol6Q3s8lA-s- {
    font-size: var(--font-size-xs);
  }
}

@media (max-width: 360px) {
  .OOOsUayhqGw- {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-sm);
  }

  .YExv2ZXn2No- {
    margin-right: 0;
    align-self: flex-start;
  }

  .cmzeaZN1nSQ- {
    width: 100%;
    order: 2;
  }

  .QN9FgRTTVS4- {
    width: 100%;
    justify-content: flex-end;
    order: 3;
  }
}
.U7tIxaTViK4- {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  padding: var(--spacing-lg);
  min-width: 700px;
}

.vNSg4jY61Wc- {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.EKZogou3MXU- {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

._6ZS-zKwCd44- {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--text-secondary);
}

._7-4tG0cV0RQ- {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
}

.vuVY0SisL-o- {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: flex-end;
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--border-primary);
}

@media (max-width: 900px) {
  .U7tIxaTViK4- {
    min-width: auto;
    max-width: none;
    width: 100%;
    padding: var(--spacing-md);
  }

  ._7-4tG0cV0RQ- {
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .vuVY0SisL-o- {
    flex-direction: column;
  }

  .vuVY0SisL-o- button {
    width: 100%;
  }
}
.Vxh97ri7kt4- {
  display: flex;
  gap: var(--spacing-sm);
  padding: 4px;
  border: 1px solid var(--border-subtle);
  border-radius: calc(var(--radius-lg) - 2px);
  background: var(--surface-2);
  overflow-x: auto;
}

.TgjSAVbVVa4- {
  background: transparent;
  border: 1px solid transparent;
  outline: none;
  padding: var(--spacing-sm) var(--spacing-md);
  font-size: var(--font-size-md);
  font-weight: 500;
  color: var(--text-secondary, #6b7280);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease;
  position: relative;
  white-space: nowrap;
}

.TgjSAVbVVa4-[data-state="active"] {
  color: var(--accent-blue, #3498db);
  background: var(--surface-1, #fff);
  border-color: var(--border-subtle);
  box-shadow: var(--shadow-sm);
  font-weight: 600;
}

.TgjSAVbVVa4-:not([data-state="active"]):hover {
  background: var(--surface-3, #f3f4f6);
  color: var(--accent-blue, #3498db);
}

.TgjSAVbVVa4-:focus-visible {
  box-shadow: 0 0 0 4px var(--focus-ring);
}

.AEu4Au-Jkh4- {
  padding-top: var(--spacing-md);
}
.DCqmJfAUQq4- {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-xs);
  cursor: pointer;
  border-radius: var(--radius-sm);
  position: relative;
  transition:
    background-color 0.2s ease,
    opacity 0.2s ease;
  min-height: 32px;
}

.DCqmJfAUQq4-:hover {
  background-color: var(--bg-surface-hover);
}

.cwAfjtTGCJU- {
  color: var(--text-primary);
  font-size: var(--font-size-sm);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.qmvHaMM1dB4- {
  position: absolute;
  right: calc(var(--spacing-lg) * -1);
  bottom: 0;
  width: 20px;
  height: 20px;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.DCqmJfAUQq4-:hover .qmvHaMM1dB4- {
  opacity: 1;
}

.g-9dPh2qiws- {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.z54XQPGc6z8- {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
}

.-EUYBcRpyWU- {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.-EUYBcRpyWU- label {
  font-weight: 500;
  color: var(--text-primary);
  font-size: var(--font-size-sm);
}

._1616osKUFCU- {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: flex-end;
  padding: var(--spacing-md);
  border-top: 1px solid var(--border-primary);
}

@media (max-width: 900px) {
  .z54XQPGc6z8- {
    gap: var(--spacing-sm);
  }

  ._1616osKUFCU- {
    flex-direction: column-reverse;
  }

  ._1616osKUFCU- button {
    width: 100%;
  }
}
.Xj-PnLNJUAw- {
  font-family: inherit;
  font-weight: 400;
  font-size: var(--font-size-sm);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  color: inherit;
  background-color: var(--input-bg);

  &.mr-AM-vQZ0k- {
    background-color: initial;
  }

  > * {
    padding: 0;
  }
}

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

._-7nKa-UDhTc- {
  cursor: pointer;

  &:hover {
    background-color: var(--input-bg);
  }
}

@keyframes -hwuMdQkhfk- {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}
.LIKAY7qmIDE- {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 2px solid var(--icon-grey);
  background: transparent;
  cursor: pointer;
  outline: none;
  transition:
    border-color 0.15s ease,
    background-color 0.15s ease,
    box-shadow 0.15s ease;
  vertical-align: middle;
}

.LIKAY7qmIDE-:hover:not(:disabled) {
  border-color: var(--accent-blue);
  background-color: color-mix(in srgb, var(--accent-blue) 6%, transparent);
}

.LIKAY7qmIDE-:focus-visible {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-blue) 25%, transparent);
}

/* Checked — SVG галочка через background-image */
.LIKAY7qmIDE-:checked {
  background-color: var(--accent-blue);
  border-color: var(--accent-blue);
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L4.5 7.5L11 1' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* Indeterminate — тире */
.LIKAY7qmIDE-:indeterminate {
  background-color: var(--accent-blue);
  border-color: var(--accent-blue);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='2' viewBox='0 0 10 2' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='0' width='10' height='2' rx='1' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.LIKAY7qmIDE-:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.Ta77QwvFPeE- {
  cursor: pointer;
  color: var(--text-secondary);
  transition:
    transform 0.2s ease,
    color 0.2s ease,
    opacity 0.2s ease;
}

.Ta77QwvFPeE-:hover:not(.RtjA2wxpIF4-) {
  color: var(--accent-blue);
  opacity: 1;
  transform: scale(1.04);
}

.RtjA2wxpIF4- {
  opacity: 0.45;
}

.NAZcBaGGD38- {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
/* Custom Media Queries - унифицированные брейкпоинты для проекта */
/* Основаны на константах из src/constants/breakpoints.ts */
/* Основные брейкпоинты */
/* Комбинированные брейкпоинты */
/* Специальные брейкпоинты */
.ofjl9ZlP1e8- {
  font-size: var(--font-size-headings-lg);
  font-weight: 700;
  color: var(--font-color);
  margin: 0;
  padding: 0;
  line-height: 1.15;
  letter-spacing: -0.02em;

  @media (max-width: 900px) {
    font-size: var(--font-size-headings-sm);
  }
}
._-6Fa86rUqVM- {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
  text-align: center;
  background-color: var(--background);
}

.lOgbARwmtf4- {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--bg-fill);
  border-radius: var(--radius-lg);
  padding: 48px 64px;
  min-width: 40vw;
  min-height: 40vh;
}

.Z0rmMJM-VXs- {
  font-size: 96px;
  font-weight: 700;
  line-height: 1;
  color: var(--primary);
  margin-bottom: 8px;
}

.JqZLd3S6NpA- {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

._9DY0wBYyCJc- {
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.c1SkQImyUvc- {
  background-color: var(--bg-fill);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);

  @media screen and (max-width: 900px) {
    padding: var(--spacing-md);
    margin-top: var(--spacing-md);
  }

  h2 {
    padding: 0;
    margin: 0;
  }
}

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

.AroNTzVGGF0- {
  display: flex;
  font-size: var(--font-size-xl);

  @media screen and (max-width: 900px) {
    flex-direction: column;
  }
}

.AroNTzVGGF0- div:first-child {
  margin-right: var(--spacing-sm);
  font-weight: bold;
}
.SlNb1F8muEk- {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  min-width: 320px;
  max-width: 440px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--accent-blue) 60%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  animation: bGnU6TGZ04E- 0.3s ease-out;
}

.MroENiyVYng- {
  display: flex;
  gap: var(--spacing-sm);
}

.qSzBFdR-t-Y- {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.qSzBFdR-t-Y- svg {
  width: 18px;
  height: 18px;
}

.V0x9DTV7phU- {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.Dl77FUThbmM- {
  margin: 0;
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: #ffffff;
}

._5mJzYMz5FG8- {
  margin: 0;
  font-size: var(--font-size-md);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

.GOkFfDg7Iwc- {
  align-self: center;
  background-color: #ffffff;
  color: var(--blue);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: var(--spacing-sm) var(--spacing-lg);
  font-weight: 600;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    background-color 0.12s ease,
    border-color 0.12s ease;
}

.GOkFfDg7Iwc-:hover {
  color: var(--hover-color);
}

._4tUMPFblpZY- {
  position: absolute;
  top: var(--spacing-sm);
  right: var(--spacing-sm);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

._4tUMPFblpZY-:hover {
  color: #ffffff;
}

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

@media (max-width: 480px) {
  .SlNb1F8muEk- {
    min-width: auto;
    max-width: calc(100vw - var(--spacing-lg) * 2);
  }
}
