/* Box sizing */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Remove default margin/padding and set core defaults */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  background: transparent;
  font: inherit;
  color: inherit;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* Base html/body */
html {
  line-height: 1.15; /* better default line-height */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
}

body {
  width: 100%;
  min-height: 100dvh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Remove list styles */
ol, ul {
  list-style: none;
}

/* Remove default quotes */
blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
  content: none;
}

/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Images and media */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Links */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/* Forms: inputs, buttons, selects, textareas */
input, button, textarea, select {
  font: inherit;
  color: inherit;
  background: transparent;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
  resize: vertical;
}

/* Buttons and clickable elements */
button, [type=button], [type=submit], [role=button] {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

/* Remove inner focus border in Firefox */
button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* Fieldset and legend */
fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  padding: 0;
}

/* Accessibility helpers */
[hidden] {
  display: none !important;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
/* Utility: make images and media non-draggable by default */
img, svg, video {
  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
}

:root {
  --brand-50: #eef2ff;
  --brand-100: #e0e7ff;
  --brand-200: #c7d2fe;
  --brand-300: #a5b4fc;
  --brand-400: #818cf8;
  --brand-500: #6366f1;
  --brand-600: #4f46e5;
  --brand-700: #4338ca;
  --brand-800: #3730a3;
  --brand-900: #312e81;
  --slate-50: #fafafa;
  --slate-100: #f4f4f5;
  --slate-200: #e4e4e7;
  --slate-300: #d4d4d8;
  --slate-400: #a1a1aa;
  --slate-500: #71717a;
  --slate-600: #52525b;
  --slate-700: #3f3f46;
  --slate-800: #27272a;
  --slate-900: #18181b;
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --info: #0ea5e9;
  --bg-color: var(--slate-50);
  --bg-surface: #ffffff;
  --bg-subtle: var(--slate-100);
  --text-primary: var(--slate-900);
  --text-secondary: var(--slate-500);
  --text-disabled: var(--slate-400);
  --text-on-brand: #ffffff;
  --border-subtle: var(--slate-200);
  --border-strong: var(--slate-300);
  --border-interactive: var(--brand-500);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-outline: 0 0 12px rgba(0, 0, 0, 0.1);
  --icon-color: #18181b;
  --select-arrow: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2318181b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  --checkbox-icon: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%2318181b' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2.5-2.5a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
  --radio-icon: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%2318181b' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
}

html[data-theme=dark] {
  --bg-color: #09090b;
  --bg-surface: #18181b;
  --bg-subtle: #27272a;
  --text-primary: #f4f4f5;
  --text-secondary: #a1a1aa;
  --text-disabled: #52525b;
  --text-on-brand: #ffffff;
  --success: #34d399;
  --error: #f87171;
  --border-subtle: #27272a;
  --border-strong: #3f3f46;
  --border-interactive: var(--brand-500);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.5);
  --shadow-outline: 0 0 12px rgba(0, 0, 0, 0.5);
  --icon-color: #f4f4f5;
  --select-arrow: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f4f4f5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  --checkbox-icon: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23f4f4f5' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2.5-2.5a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
  --radio-icon: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23f4f4f5' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1360px;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

.row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 15px;
  width: 100%;
  align-items: stretch;
}

/* column spans */
.col-1 {
  grid-column: span 1;
}

.col-2 {
  grid-column: span 2;
}

.col-3 {
  grid-column: span 3;
}

.col-4 {
  grid-column: span 4;
}

.col-5 {
  grid-column: span 5;
}

.col-6 {
  grid-column: span 6;
}

.col-7 {
  grid-column: span 7;
}

.col-8 {
  grid-column: span 8;
}

.col-9 {
  grid-column: span 9;
}

.col-10 {
  grid-column: span 10;
}

.col-11 {
  grid-column: span 11;
}

.col-12 {
  grid-column: span 12;
}

/* responsive helpers: .col-sm-6 .col-md-4 etc */
@media (min-width: 576px) {
  .col-sm-1 {
    grid-column: span 1;
  }
  .col-sm-2 {
    grid-column: span 2;
  }
  .col-sm-3 {
    grid-column: span 3;
  }
  .col-sm-4 {
    grid-column: span 4;
  }
  .col-sm-5 {
    grid-column: span 5;
  }
  .col-sm-6 {
    grid-column: span 6;
  }
  .col-sm-7 {
    grid-column: span 7;
  }
  .col-sm-8 {
    grid-column: span 8;
  }
  .col-sm-9 {
    grid-column: span 9;
  }
  .col-sm-10 {
    grid-column: span 10;
  }
  .col-sm-11 {
    grid-column: span 11;
  }
  .col-sm-12 {
    grid-column: span 12;
  }
}
@media (min-width: 768px) {
  .col-md-1 {
    grid-column: span 1;
  }
  .col-md-2 {
    grid-column: span 2;
  }
  .col-md-3 {
    grid-column: span 3;
  }
  .col-md-4 {
    grid-column: span 4;
  }
  .col-md-5 {
    grid-column: span 5;
  }
  .col-md-6 {
    grid-column: span 6;
  }
  .col-md-7 {
    grid-column: span 7;
  }
  .col-md-8 {
    grid-column: span 8;
  }
  .col-md-9 {
    grid-column: span 9;
  }
  .col-md-10 {
    grid-column: span 10;
  }
  .col-md-11 {
    grid-column: span 11;
  }
  .col-md-12 {
    grid-column: span 12;
  }
}
@media (min-width: 992px) {
  .col-lg-1 {
    grid-column: span 1;
  }
  .col-lg-2 {
    grid-column: span 2;
  }
  .col-lg-3 {
    grid-column: span 3;
  }
  .col-lg-4 {
    grid-column: span 4;
  }
  .col-lg-5 {
    grid-column: span 5;
  }
  .col-lg-6 {
    grid-column: span 6;
  }
  .col-lg-7 {
    grid-column: span 7;
  }
  .col-lg-8 {
    grid-column: span 8;
  }
  .col-lg-9 {
    grid-column: span 9;
  }
  .col-lg-10 {
    grid-column: span 10;
  }
  .col-lg-11 {
    grid-column: span 11;
  }
  .col-lg-12 {
    grid-column: span 12;
  }
}
@media (min-width: 1200px) {
  .col-xl-1 {
    grid-column: span 1;
  }
  .col-xl-2 {
    grid-column: span 2;
  }
  .col-xl-3 {
    grid-column: span 3;
  }
  .col-xl-4 {
    grid-column: span 4;
  }
  .col-xl-5 {
    grid-column: span 5;
  }
  .col-xl-6 {
    grid-column: span 6;
  }
  .col-xl-7 {
    grid-column: span 7;
  }
  .col-xl-8 {
    grid-column: span 8;
  }
  .col-xl-9 {
    grid-column: span 9;
  }
  .col-xl-10 {
    grid-column: span 10;
  }
  .col-xl-11 {
    grid-column: span 11;
  }
  .col-xl-12 {
    grid-column: span 12;
  }
}
/* utility: full width column */
.col-full {
  grid-column: 1/-1;
}

/* offset helper: .offset-md-2 */
.offset-1 {
  margin-left: calc(100% / 12 * 1 + 15px * 1);
}

@media (min-width: 576px) {
  .offset-sm-1 {
    margin-left: calc(100% / 12 * 1 + 15px * 1);
  }
}
@media (min-width: 768px) {
  .offset-md-1 {
    margin-left: calc(100% / 12 * 1 + 15px * 1);
  }
}
@media (min-width: 992px) {
  .offset-lg-1 {
    margin-left: calc(100% / 12 * 1 + 15px * 1);
  }
}
@media (min-width: 1200px) {
  .offset-xl-1 {
    margin-left: calc(100% / 12 * 1 + 15px * 1);
  }
}
.offset-2 {
  margin-left: calc(100% / 12 * 2 + 15px * 2);
}

@media (min-width: 576px) {
  .offset-sm-2 {
    margin-left: calc(100% / 12 * 2 + 15px * 2);
  }
}
@media (min-width: 768px) {
  .offset-md-2 {
    margin-left: calc(100% / 12 * 2 + 15px * 2);
  }
}
@media (min-width: 992px) {
  .offset-lg-2 {
    margin-left: calc(100% / 12 * 2 + 15px * 2);
  }
}
@media (min-width: 1200px) {
  .offset-xl-2 {
    margin-left: calc(100% / 12 * 2 + 15px * 2);
  }
}
.offset-3 {
  margin-left: calc(100% / 12 * 3 + 15px * 3);
}

@media (min-width: 576px) {
  .offset-sm-3 {
    margin-left: calc(100% / 12 * 3 + 15px * 3);
  }
}
@media (min-width: 768px) {
  .offset-md-3 {
    margin-left: calc(100% / 12 * 3 + 15px * 3);
  }
}
@media (min-width: 992px) {
  .offset-lg-3 {
    margin-left: calc(100% / 12 * 3 + 15px * 3);
  }
}
@media (min-width: 1200px) {
  .offset-xl-3 {
    margin-left: calc(100% / 12 * 3 + 15px * 3);
  }
}
.offset-4 {
  margin-left: calc(100% / 12 * 4 + 15px * 4);
}

@media (min-width: 576px) {
  .offset-sm-4 {
    margin-left: calc(100% / 12 * 4 + 15px * 4);
  }
}
@media (min-width: 768px) {
  .offset-md-4 {
    margin-left: calc(100% / 12 * 4 + 15px * 4);
  }
}
@media (min-width: 992px) {
  .offset-lg-4 {
    margin-left: calc(100% / 12 * 4 + 15px * 4);
  }
}
@media (min-width: 1200px) {
  .offset-xl-4 {
    margin-left: calc(100% / 12 * 4 + 15px * 4);
  }
}
.offset-5 {
  margin-left: calc(100% / 12 * 5 + 15px * 5);
}

@media (min-width: 576px) {
  .offset-sm-5 {
    margin-left: calc(100% / 12 * 5 + 15px * 5);
  }
}
@media (min-width: 768px) {
  .offset-md-5 {
    margin-left: calc(100% / 12 * 5 + 15px * 5);
  }
}
@media (min-width: 992px) {
  .offset-lg-5 {
    margin-left: calc(100% / 12 * 5 + 15px * 5);
  }
}
@media (min-width: 1200px) {
  .offset-xl-5 {
    margin-left: calc(100% / 12 * 5 + 15px * 5);
  }
}
.offset-6 {
  margin-left: calc(100% / 12 * 6 + 15px * 6);
}

@media (min-width: 576px) {
  .offset-sm-6 {
    margin-left: calc(100% / 12 * 6 + 15px * 6);
  }
}
@media (min-width: 768px) {
  .offset-md-6 {
    margin-left: calc(100% / 12 * 6 + 15px * 6);
  }
}
@media (min-width: 992px) {
  .offset-lg-6 {
    margin-left: calc(100% / 12 * 6 + 15px * 6);
  }
}
@media (min-width: 1200px) {
  .offset-xl-6 {
    margin-left: calc(100% / 12 * 6 + 15px * 6);
  }
}
.offset-7 {
  margin-left: calc(100% / 12 * 7 + 15px * 7);
}

@media (min-width: 576px) {
  .offset-sm-7 {
    margin-left: calc(100% / 12 * 7 + 15px * 7);
  }
}
@media (min-width: 768px) {
  .offset-md-7 {
    margin-left: calc(100% / 12 * 7 + 15px * 7);
  }
}
@media (min-width: 992px) {
  .offset-lg-7 {
    margin-left: calc(100% / 12 * 7 + 15px * 7);
  }
}
@media (min-width: 1200px) {
  .offset-xl-7 {
    margin-left: calc(100% / 12 * 7 + 15px * 7);
  }
}
.offset-8 {
  margin-left: calc(100% / 12 * 8 + 15px * 8);
}

@media (min-width: 576px) {
  .offset-sm-8 {
    margin-left: calc(100% / 12 * 8 + 15px * 8);
  }
}
@media (min-width: 768px) {
  .offset-md-8 {
    margin-left: calc(100% / 12 * 8 + 15px * 8);
  }
}
@media (min-width: 992px) {
  .offset-lg-8 {
    margin-left: calc(100% / 12 * 8 + 15px * 8);
  }
}
@media (min-width: 1200px) {
  .offset-xl-8 {
    margin-left: calc(100% / 12 * 8 + 15px * 8);
  }
}
.offset-9 {
  margin-left: calc(100% / 12 * 9 + 15px * 9);
}

@media (min-width: 576px) {
  .offset-sm-9 {
    margin-left: calc(100% / 12 * 9 + 15px * 9);
  }
}
@media (min-width: 768px) {
  .offset-md-9 {
    margin-left: calc(100% / 12 * 9 + 15px * 9);
  }
}
@media (min-width: 992px) {
  .offset-lg-9 {
    margin-left: calc(100% / 12 * 9 + 15px * 9);
  }
}
@media (min-width: 1200px) {
  .offset-xl-9 {
    margin-left: calc(100% / 12 * 9 + 15px * 9);
  }
}
.offset-10 {
  margin-left: calc(100% / 12 * 10 + 15px * 10);
}

@media (min-width: 576px) {
  .offset-sm-10 {
    margin-left: calc(100% / 12 * 10 + 15px * 10);
  }
}
@media (min-width: 768px) {
  .offset-md-10 {
    margin-left: calc(100% / 12 * 10 + 15px * 10);
  }
}
@media (min-width: 992px) {
  .offset-lg-10 {
    margin-left: calc(100% / 12 * 10 + 15px * 10);
  }
}
@media (min-width: 1200px) {
  .offset-xl-10 {
    margin-left: calc(100% / 12 * 10 + 15px * 10);
  }
}
.offset-11 {
  margin-left: calc(100% / 12 * 11 + 15px * 11);
}

@media (min-width: 576px) {
  .offset-sm-11 {
    margin-left: calc(100% / 12 * 11 + 15px * 11);
  }
}
@media (min-width: 768px) {
  .offset-md-11 {
    margin-left: calc(100% / 12 * 11 + 15px * 11);
  }
}
@media (min-width: 992px) {
  .offset-lg-11 {
    margin-left: calc(100% / 12 * 11 + 15px * 11);
  }
}
@media (min-width: 1200px) {
  .offset-xl-11 {
    margin-left: calc(100% / 12 * 11 + 15px * 11);
  }
}
.offset-12 {
  margin-left: calc(100% / 12 * 12 + 15px * 12);
}

@media (min-width: 576px) {
  .offset-sm-12 {
    margin-left: calc(100% / 12 * 12 + 15px * 12);
  }
}
@media (min-width: 768px) {
  .offset-md-12 {
    margin-left: calc(100% / 12 * 12 + 15px * 12);
  }
}
@media (min-width: 992px) {
  .offset-lg-12 {
    margin-left: calc(100% / 12 * 12 + 15px * 12);
  }
}
@media (min-width: 1200px) {
  .offset-xl-12 {
    margin-left: calc(100% / 12 * 12 + 15px * 12);
  }
}
.layout {
  background-color: var(--bg-color);
  color: var(--text-primary);
  display: grid;
  grid-template-areas: "header" "aside" "main" "footer";
  grid-template-columns: 1fr;
  grid-template-rows: auto auto 1fr auto;
  width: 100%;
  min-height: 100dvh;
  gap: 15px;
  font-family: "Roboto", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (min-width: 992px) {
  .layout {
    grid-template-areas: "header header header header" "gutter-left aside main gutter-right" "footer footer footer footer";
    grid-template-columns: 1fr minmax(300px, calc(calc(1360px - calc(15px * 2)) * 1 / 4)) minmax(320px, calc(calc(1360px - calc(15px * 2)) * 3 / 4)) 1fr;
    grid-template-rows: auto 1fr auto;
    gap: 30px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .layout * {
    transition-duration: 0ms;
    animation-duration: 0ms;
  }
}

.layout-simple {
  background-color: var(--bg-color);
  color: var(--text-primary);
  display: grid;
  grid: "header" auto "main" 1fr "footer" auto/1fr;
  width: 100%;
  font-family: "Roboto", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  gap: 15px;
}

.aside {
  grid-area: aside;
  display: flex;
  justify-content: flex-start;
  padding: 0 15px;
}
@media screen and (min-width: 992px) {
  .aside {
    padding: 0;
  }
}

.navigation {
  background: var(--bg-surface);
  box-shadow: var(--shadow-outline);
  border-radius: 0.375rem;
  padding: 15px;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .navigation {
    padding: 30px;
  }
}

.list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}
.list__item {
  width: 100%;
}
.list__item:hover .list__link {
  color: var(--brand-600);
}
.list__link {
  color: var(--text-primary);
  display: block;
  width: 100%;
  padding: 0.375rem 0.625rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  border: 1px solid transparent;
  font-family: "Roboto", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.btn:focus {
  outline: none;
  box-shadow: none;
}
.btn--primary {
  background: var(--brand-500);
  color: var(--text-on-brand);
  border-color: var(--brand-500);
}
.btn--primary:not([disabled]):not(.is-disabled):hover {
  background: var(--brand-700);
  border-color: var(--brand-700);
}
.btn--secondary {
  background: var(--slate-500);
  border-color: var(--slate-500);
  color: var(--text-on-brand);
}
.btn--secondary:not([disabled]):not(.is-disabled):hover {
  background: var(--slate-700);
  border-color: var(--slate-700);
}
.btn--outline {
  background: transparent;
  color: var(--brand-500);
  border-color: var(--brand-500);
}
.btn--outline:not([disabled]):not(.is-disabled):hover {
  border-color: var(--brand-600);
  color: var(--brand-600);
}
.btn--text {
  color: var(--text-primary);
}
.btn--text:not([disabled]):not(.is-disabled):hover {
  color: var(--text-secondary);
}
.btn--text-primary {
  color: var(--brand-500);
}
.btn--text-primary:not([disabled]):not(.is-disabled):hover {
  color: var(--brand-600);
}
.btn--text-secondary {
  color: var(--text-secondary);
}
.btn--text-secondary:not([disabled]):not(.is-disabled):hover {
  color: var(--text-primary);
}
.btn--icon {
  background: transparent;
  color: var(--text-primary);
  padding: 0;
}
.btn--icon-primary {
  padding: 0;
  background: var(--brand-500);
  color: var(--text-on-brand);
  border-color: var(--brand-500);
}
.btn--icon-primary:not([disabled]):not(.is-disabled):hover {
  background: var(--brand-700);
  border-color: var(--brand-700);
}
.btn--icon-secondary {
  padding: 0;
  background: var(--slate-500);
  border-color: var(--slate-500);
  color: var(--text-on-brand);
}
.btn--icon-secondary:not([disabled]):not(.is-disabled):hover {
  background: var(--slate-700);
  border-color: var(--slate-700);
}
.btn--icon-outline {
  padding: 0;
  background: transparent;
  color: var(--brand-500);
  border-color: var(--brand-500);
}
.btn--icon-outline:not([disabled]):not(.is-disabled):hover {
  border-color: var(--brand-600);
  color: var(--brand-600);
}
.btn--icon-small {
  width: 1.75rem;
  height: 1.75rem;
}
.btn--icon-medium {
  width: 2.25rem;
  height: 2.25rem;
}
.btn--icon-large {
  width: 2.625rem;
  height: 2.625rem;
}
.btn--small {
  padding: 0.375rem 0.625rem;
  font-size: 0.875rem;
}
.btn--medium {
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
}
.btn--large {
  padding: 0.625rem 1rem;
  font-size: 1.125rem;
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.footer {
  grid-area: footer;
  background-color: var(--bg-surface);
  box-shadow: var(--shadow-outline);
  color: var(--text-secondary);
}
.footer__container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 30px 15px;
  gap: 10px;
}
.footer__text--bold {
  font-weight: 700;
}

.form-group {
  margin-bottom: 0.75rem;
}
@media screen and (min-width: 992px) {
  .form-group {
    margin-bottom: 1rem;
  }
}
.form-group--gap-sm {
  gap: 0.5rem;
}
.form-group--space-md {
  gap: 1rem;
}

.input-group {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 15px;
}
.input-group--vertical {
  flex-direction: column;
}

.form-label {
  color: var(--text-primary);
  display: inline-block;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
  cursor: pointer;
  line-height: 1.4;
}
.form-label.disabled {
  color: var(--text-disabled);
  cursor: not-allowed;
}
.form-label.required::after {
  content: " *";
  color: var(--error);
  font-weight: 600;
}

.input-text {
  color: var(--text-primary);
  display: inline-block;
  font-size: 0.95rem;
  cursor: pointer;
}

.check-control-label {
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 1rem;
  user-select: none;
}
.check-control-label:has(input:disabled) {
  color: var(--text-disabled);
  cursor: not-allowed;
}

.form-help {
  color: var(--text-disabled);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.form-control, .single-select, .form-textarea {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-primary);
  background-color: var(--bg-subtle);
  background-clip: padding-box;
  border: 1px solid var(--border-subtle);
  border-radius: 0.375rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  box-sizing: border-box;
}
.form-control:focus, .single-select:focus, .form-textarea:focus {
  color: var(--text-primary);
  border-color: var(--border-interactive);
  box-shadow: var(--shadow-outline);
  outline: none;
}
.form-control::placeholder, .single-select::placeholder, .form-textarea::placeholder {
  color: var(--text-secondary);
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
}

.input-base, input[type=radio], input[type=checkbox] {
  appearance: none;
  display: inline-block;
  vertical-align: middle;
  width: 1.25rem;
  height: 1.25rem;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-strong);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  cursor: pointer;
  margin: 0;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.input-base:hover:not(:disabled), input[type=radio]:hover:not(:disabled), input[type=checkbox]:hover:not(:disabled) {
  border-color: var(--brand-600);
}
.input-base:focus-visible, input[type=radio]:focus-visible, input[type=checkbox]:focus-visible {
  border-color: var(--brand-500);
  box-shadow: var(--shadow-outline);
}
.input-base:checked, input[type=radio]:checked, input[type=checkbox]:checked {
  background-color: var(--brand-500);
  border-color: var(--brand-500);
}
.input-base:disabled, input[type=radio]:disabled, input[type=checkbox]:disabled {
  cursor: not-allowed;
  background-color: var(--slate-100);
  border-color: var(--slate-200);
}
.input-base:disabled:checked, input[type=radio]:disabled:checked, input[type=checkbox]:disabled:checked {
  background-color: var(--slate-400);
  border-color: var(--slate-400);
}
.input-base.is-invalid, input.is-invalid[type=radio], input.is-invalid[type=checkbox] {
  border-color: var(--error);
}
.input-base.is-invalid:focus-visible, input.is-invalid[type=radio]:focus-visible, input.is-invalid[type=checkbox]:focus-visible {
  box-shadow: 0 0 0 2px var(--bg-surface), 0 0 0 4px var(--error);
}

input[type=checkbox] {
  border-radius: 0.25rem;
}
input[type=checkbox]:checked {
  background-image: var(--checkbox-icon);
}

input[type=radio] {
  border-radius: 50%;
}
input[type=radio]:checked {
  background-image: var(--radio-icon);
}

.single-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: var(--select-arrow);
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 1rem;
  cursor: pointer;
  padding: 0.5rem 1.5rem 0.5rem 0.75rem;
}
.single-select:invalid {
  color: var(--text-secondary);
}
.single-select option {
  color: var(--text-primary);
  background-color: var(--bg-subtle);
  padding: 0.5rem;
}
.single-select option:disabled {
  color: var(--text-primary);
  opacity: 0.6;
}

.header {
  background-color: var(--bg-surface);
  color: var(--text-secondary);
  box-shadow: var(--shadow-md);
  grid-area: header;
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
}
.header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1360px;
  padding: 15px;
  margin: 0 auto;
}
.header__col {
  display: flex;
  align-items: center;
}
.header__col .single-select {
  width: 65px;
}
.header__col--space {
  gap: 15px;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.logo__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
}
.logo__title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  fill: currentColor;
  stroke: none;
}

.icon--small {
  width: 1rem;
  height: 1rem;
}
.icon--medium {
  width: 1.125rem;
  height: 1.125rem;
}
.icon--large {
  width: 1.25rem;
  height: 1.25rem;
}
.icon--icon-small {
  width: 1.3125rem;
  height: 1.3125rem;
}
.icon--icon-medium {
  width: 1.75rem;
  height: 1.75rem;
}
.icon--icon-large {
  width: 2rem;
  height: 2rem;
}

.main {
  grid-area: main;
  display: flex;
  justify-content: flex-start;
  padding: 0 15px;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .main {
    padding: 0;
  }
}
.main__container {
  background: var(--bg-surface);
  box-shadow: var(--shadow-outline);
  border-radius: 0.375rem;
  width: 100%;
  min-height: 100%;
  padding: 15px;
}
@media screen and (min-width: 992px) {
  .main__container {
    padding: 30px;
  }
}

.table-wrapper {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Roboto", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--bg-surface);
}
.table th, .table td {
  padding: 0.75rem;
  border-bottom: 1px solid var(--border-subtle);
  vertical-align: middle;
  text-align: left;
  white-space: nowrap;
}
.table thead {
  background: var(--bg-subtle);
}
.table thead th {
  font-weight: 700;
}
.table tbody tr:hover {
  background: var(--bg-subtle);
}
.table .table-sm th, .table .table-sm td {
  padding: 0.4rem 0.6rem;
}
.table .table-striped tbody tr:nth-child(odd) {
  background: rgba(0, 0, 0, 0.02);
}

.m-0 {
  margin: 0rem;
}

.p-0 {
  padding: 0rem;
}

.m-1 {
  margin: 0.5rem;
}

.p-1 {
  padding: 0.5rem;
}

.m-2 {
  margin: 1rem;
}

.p-2 {
  padding: 1rem;
}

.m-3 {
  margin: 1.5rem;
}

.p-3 {
  padding: 1.5rem;
}

.m-4 {
  margin: 2rem;
}

.p-4 {
  padding: 2rem;
}

.m-t-0 {
  margin-top: 0rem;
}

.p-t-0 {
  padding-top: 0rem;
}

.m-t-1 {
  margin-top: 0.5rem;
}

.p-t-1 {
  padding-top: 0.5rem;
}

.m-t-2 {
  margin-top: 1rem;
}

.p-t-2 {
  padding-top: 1rem;
}

.m-t-3 {
  margin-top: 1.5rem;
}

.p-t-3 {
  padding-top: 1.5rem;
}

.m-t-4 {
  margin-top: 2rem;
}

.p-t-4 {
  padding-top: 2rem;
}

.m-r-0 {
  margin-right: 0rem;
}

.p-r-0 {
  padding-right: 0rem;
}

.m-r-1 {
  margin-right: 0.5rem;
}

.p-r-1 {
  padding-right: 0.5rem;
}

.m-r-2 {
  margin-right: 1rem;
}

.p-r-2 {
  padding-right: 1rem;
}

.m-r-3 {
  margin-right: 1.5rem;
}

.p-r-3 {
  padding-right: 1.5rem;
}

.m-r-4 {
  margin-right: 2rem;
}

.p-r-4 {
  padding-right: 2rem;
}

.m-b-0 {
  margin-bottom: 0rem;
}

.p-b-0 {
  padding-bottom: 0rem;
}

.m-b-1 {
  margin-bottom: 0.5rem;
}

.p-b-1 {
  padding-bottom: 0.5rem;
}

.m-b-2 {
  margin-bottom: 1rem;
}

.p-b-2 {
  padding-bottom: 1rem;
}

.m-b-3 {
  margin-bottom: 1.5rem;
}

.p-b-3 {
  padding-bottom: 1.5rem;
}

.m-b-4 {
  margin-bottom: 2rem;
}

.p-b-4 {
  padding-bottom: 2rem;
}

.m-l-0 {
  margin-left: 0rem;
}

.p-l-0 {
  padding-left: 0rem;
}

.m-l-1 {
  margin-left: 0.5rem;
}

.p-l-1 {
  padding-left: 0.5rem;
}

.m-l-2 {
  margin-left: 1rem;
}

.p-l-2 {
  padding-left: 1rem;
}

.m-l-3 {
  margin-left: 1.5rem;
}

.p-l-3 {
  padding-left: 1.5rem;
}

.m-l-4 {
  margin-left: 2rem;
}

.p-l-4 {
  padding-left: 2rem;
}

.m-x-0 {
  margin-left: 0rem;
  margin-right: 0rem;
}

.p-x-0 {
  padding-left: 0rem;
  padding-right: 0rem;
}

.m-x-1 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.p-x-1 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.m-x-2 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.p-x-2 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.m-x-3 {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.p-x-3 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.m-x-4 {
  margin-left: 2rem;
  margin-right: 2rem;
}

.p-x-4 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.m-y-0 {
  margin-top: 0rem;
  margin-bottom: 0rem;
}

.p-y-0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
}

.m-y-1 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.p-y-1 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.m-y-2 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.p-y-2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.m-y-3 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.p-y-3 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.m-y-4 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.p-y-4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* DISPLAY utilities */
.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-inline {
  display: inline;
}

.d-inline-block {
  display: inline-block;
}

.d-flex {
  display: flex;
}

.d-inline-flex {
  display: inline-flex;
}

.d-grid {
  display: grid;
}

/* TEXT ALIGN */
.text-left {
  text-align: left;
}

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

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

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

/* VISIBILITY */
.visible {
  visibility: visible;
  opacity: 1;
}

.invisible {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

/* FLEX helpers */
.flex {
  display: flex;
}

.flex-row {
  flex-direction: row;
}

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

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* FLEX DIRECTION (extend existing) */
.flex-row-reverse {
  flex-direction: row-reverse;
}

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

/* FLEX WRAP */
.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

/* ALIGN ITEMS */
.items-start {
  align-items: flex-start;
}

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

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

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

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

/* JUSTIFY CONTENT */
.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

/* GAP (uses existing space-map scale) */
.gap-0 {
  gap: 0rem;
}

.gap-x-0 {
  column-gap: 0rem;
}

.gap-y-0 {
  row-gap: 0rem;
}

.gap-1 {
  gap: 0.5rem;
}

.gap-x-1 {
  column-gap: 0.5rem;
}

.gap-y-1 {
  row-gap: 0.5rem;
}

.gap-2 {
  gap: 1rem;
}

.gap-x-2 {
  column-gap: 1rem;
}

.gap-y-2 {
  row-gap: 1rem;
}

.gap-3 {
  gap: 1.5rem;
}

.gap-x-3 {
  column-gap: 1.5rem;
}

.gap-y-3 {
  row-gap: 1.5rem;
}

.gap-4 {
  gap: 2rem;
}

.gap-x-4 {
  column-gap: 2rem;
}

.gap-y-4 {
  row-gap: 2rem;
}

/* FLEX GROW / SHRINK / BASIS */
.flex-1 {
  flex: 1 1 0;
}

.flex-auto {
  flex: 1 1 auto;
}

.flex-none {
  flex: none;
}

.grow {
  flex-grow: 1;
}

.grow-0 {
  flex-grow: 0;
}

.shrink {
  flex-shrink: 1;
}

.shrink-0 {
  flex-shrink: 0;
}

/* GRID helpers */
.grid {
  display: grid;
}

.grid-center {
  display: grid;
  place-items: center;
}

/* WIDTH / HEIGHT utilities (percent / auto) */
.w-100 {
  width: 100%;
}

.w-auto {
  width: auto;
}

.h-100 {
  height: 100%;
}

.h-auto {
  height: auto;
}

/* TEXT TRUNCATE */
.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* TITLES */
.title-h1 {
  font-size: 2rem;
  font-weight: 700;
}

.title-h2 {
  font-size: 1.6rem;
  font-weight: 700;
}

.title-h3 {
  font-size: 1.375rem;
  font-weight: 700;
}

.title-h4 {
  font-size: 1.125rem;
  font-weight: 700;
}

.title-h5 {
  font-size: 1rem;
  font-weight: 700;
}

.title-h6 {
  font-size: 0.875rem;
  font-weight: 700;
}

/* TEXT COLORS */
.brand-50 {
  color: var(--brand-50);
}

.brand-100 {
  color: var(--brand-100);
}

.brand-500 {
  color: var(--brand-500);
}

.brand-600 {
  color: var(--brand-600);
}

.brand-700 {
  color: var(--brand-700);
}

.slate-50 {
  color: var(--slate-50);
}

.slate-100 {
  color: var(--slate-100);
}

.slate-200 {
  color: var(--slate-200);
}

.slate-300 {
  color: var(--slate-300);
}

.slate-400 {
  color: var(--slate-400);
}

.slate-500 {
  color: var(--slate-500);
}

.slate-900 {
  color: var(--slate-900);
}

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

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

.color-error {
  color: var(--error);
}

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

/* BACKGROUND COLORS */
.bg-brand-50 {
  background-color: var(--brand-50);
}

.bg-brand-100 {
  background-color: var(--brand-100);
}

.bg-brand-500 {
  background-color: var(--brand-500);
}

.bg-brand-600 {
  background-color: var(--brand-600);
}

.bg-brand-700 {
  background-color: var(--brand-700);
}

.bg-slate-50 {
  background-color: var(--slate-50);
}

.bg-slate-100 {
  background-color: var(--slate-100);
}

.bg-slate-200 {
  background-color: var(--slate-200);
}

.bg-slate-300 {
  background-color: var(--slate-300);
}

.bg-slate-400 {
  background-color: var(--slate-400);
}

.bg-slate-500 {
  background-color: var(--slate-500);
}

.bg-slate-900 {
  background-color: var(--slate-900);
}

.bg-success {
  background-color: var(--success);
}

.bg-warning {
  background-color: var(--warning);
}

.bg-error {
  background-color: var(--error);
}

.bg-info {
  background-color: var(--info);
}

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