:root {
  --bg: #f4f6fa;
  --paper: #fff;
  --ink: #11192d;
  --muted: #7385a4;
  --line: #dee6f1;
  --nav: #101826;
  --accent: #cb29df;
  --accent-light: #faf0fe;
  --hover: #cb29df;
  --selected: #ba25ce;
  --danger: #ff365c;
  --blue: #2861ee;
  --success: #00b87d;
  --amber: #f39500;
  --radius: 16px;
  --shadow: 0 2px 3px #11192d06;
  --sidebar: 260px;
  --transition: 160ms;
  --elevation: 3px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 13px;
  line-height: 1.6;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
select {
  touch-action: manipulation;
}
button {
  cursor: pointer;
  color: inherit;
}
a {
  color: var(--blue);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1 {
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -1.1px;
  font-weight: 700;
}
h2 {
  font-size: 16px;
  line-height: 1.35;
  font-weight: 650;
}
h3 {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 650;
}
small {
  font-size: 11px;
  color: var(--muted);
}
.muted {
  color: var(--muted);
}
.small {
  font-size: 11px;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 750;
  margin-bottom: 13px;
}
.icon {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.btn {
  border: 1px solid #19243b;
  border-radius: 10px;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 12px;
  min-height: 34px;
  white-space: nowrap;
  font-size: 12px;
  transition:
    background var(--transition),
    box-shadow var(--transition);
}
.btn:hover:not(:disabled) {
  background: #e9edf5;
}
.btn.primary {
  color: white;
  background: var(--ink);
  border-color: var(--ink);
}
.btn.primary:hover:not(:disabled) {
  background: #29354e;
}
.btn.accent {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}
.btn.white {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--line);
}
.btn.danger {
  color: #fb214f;
  border-color: #ffbcc8;
}
.btn.icon-btn {
  padding: 7px;
  width: 34px;
  flex-shrink: 0;
}
.btn.soft {
  border-color: var(--line);
  background: var(--paper);
}
.btn.cyan {
  background: #009ebd;
  border-color: #009ebd;
  color: white;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 1px 8px;
  border-radius: 99px;
  border: 1px solid var(--line);
  font-size: 10px;
  line-height: 1.7;
  white-space: nowrap;
  color: #647b9d;
  background: var(--paper);
}
.badge.good {
  color: #008d63;
  background: #e4faef;
  border-color: #9aedc8;
}
.badge.warn {
  color: #ac5900;
  background: #fff3c5;
  border-color: #ffe29c;
}
.badge.bad {
  color: #f5234d;
  background: #fff0f3;
  border-color: #ffc1ce;
}
.badge.blue {
  color: #245deb;
  background: #edf4ff;
  border-color: #c3d8ff;
}
.badge.purple {
  color: var(--accent);
  background: var(--accent-light);
  border-color: #efc6fc;
}
.badge.dark {
  background: #333b51;
  color: #dce2ef;
  border-color: transparent;
}
.badge.muted {
  background: #f1f4f8;
}
.flex {
  display: flex;
  align-items: center;
  gap: 10px;
}
.between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.wrap {
  flex-wrap: wrap;
}
.stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.grow {
  flex: 1;
  min-width: 0;
}
.right {
  text-align: right;
}
.avatar {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #c32758;
  color: white;
  font-size: 12px;
  font-weight: 650;
  flex-shrink: 0;
  overflow: hidden;
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.avatar.large {
  width: 76px;
  height: 76px;
  font-size: 30px;
}
.avatar.blue {
  background: #25569b;
}
.avatar.admin {
  background: #111a2c;
}
.avatar.manager {
  background: #7960c2;
}
.row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  border-bottom: 1px solid #edf1f7;
}
.row:last-child {
  border-bottom: 0;
}
.panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 0;
  overflow: hidden;
}
.panel-head {
  padding: 20px;
  border-bottom: 1px solid #edf1f7;
}
.panel-body {
  padding: 20px;
}
.panel-foot {
  padding: 12px 20px;
  background: #f8fafc;
  border-top: 1px solid #edf1f7;
  font-size: 11px;
  color: var(--muted);
}
.panel p,
.panel-head p {
  color: var(--muted);
  font-size: 12px;
  margin-top: 5px;
}
.dark-panel {
  background: var(--ink);
  color: white;
  border-radius: var(--radius);
  padding: 20px;
}
.dark-panel p {
  color: #97a7c0;
  margin-top: 10px;
}
.dark-panel .btn {
  margin-top: 18px;
  width: 100%;
}
.note {
  padding: 14px 16px;
  border: 1px solid #bdd4ff;
  border-radius: var(--radius);
  background: #eff5ff;
  color: #315de3;
  font-size: 12px;
}
.note p {
  color: inherit;
  margin-top: 5px;
}
.note.warn {
  background: #fffae8;
  border-color: #ffe190;
  color: #a05b10;
}
.note.purple {
  background: #faf2ff;
  border-color: #edc4ff;
  color: #9c16b3;
}
.note.critical {
  background: #fff2f5;
  border-color: #ffc2d0;
  color: #ba1238;
}
.note.cyan {
  background: #effdff;
  border-color: #99eafd;
  color: #007e9e;
}
.empty {
  padding: 50px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
  min-height: 170px;
}
.empty .icon {
  width: 30px;
  height: 30px;
  color: #c0cfe0;
}
.empty strong {
  color: #41516d;
  font-size: 13px;
}
.empty p {
  max-width: 520px;
  margin: auto;
}
.loading {
  min-height: 100vh;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 16px;
}
.spinner {
  display: inline-block;
  border: 3px solid #e2e8f0;
  border-top-color: var(--accent);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--sidebar);
  background: var(--nav);
  color: #c6cfdd;
  display: flex;
  flex-direction: column;
  z-index: 30;
}
.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 28px 18px 20px;
}
.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.brand strong {
  color: white;
  font-size: 14px;
  display: block;
}
.brand small {
  display: block;
  color: #8799b4;
  line-height: 1.2;
}
.runtime {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  line-height: 1.3;
  margin: 0 16px 24px;
  background: #202937;
  border: 1px solid #3a4451;
  border-radius: 12px;
  padding: 12px 10px;
}
.dot {
  height: 7px;
  width: 7px;
  border-radius: 50%;
  background: #8396b1;
  display: inline-block;
  flex-shrink: 0;
}
.dot.online {
  background: #03c998;
  box-shadow: 0 0 0 4px #06c39719;
}
.runtime .badge {
  margin-left: auto;
  font-size: 9px;
  background: #414956;
  color: #d5dce8;
  border: 0;
}
.nav-scroll {
  flex: 1;
  overflow: auto;
  min-height: 80px;
  padding-bottom: 15px;
  scrollbar-width: thin;
}
.nav-title {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #7188a5;
  margin: 6px 16px 10px;
}
.nav-link {
  width: calc(100% - 12px);
  border: 0;
  border-left: 2px solid transparent;
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  padding: 10px 12px;
  margin: 2px 6px;
  border-radius: 12px;
  color: #c5ceda;
  text-align: left;
  font-size: 12px;
}
.nav-link .count {
  margin-left: auto;
}
.nav-link:hover {
  background: #263048;
}
.nav-link[aria-current="page"] {
  background: #33193d;
  border-left-color: var(--accent);
  color: white;
}
.count {
  font-size: 10px;
  background: #f7371b;
  color: white;
  min-width: 19px;
  height: 19px;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}
.count.none {
  background: #343c50;
  color: #afbacc;
}
.sidebar-bottom {
  padding: 14px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid #354154;
}
.side-box {
  border: 1px solid #3a4352;
  background: #202936;
  border-radius: 15px;
  padding: 11px;
}
.side-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1.7px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.side-box select {
  margin: 10px 0 5px;
  background: #131b2b;
  color: white;
  border-color: #354055;
  padding: 7px;
  font-size: 11px;
}
.side-box p {
  font-size: 9px;
  color: #8a9ab0;
  margin-top: 5px;
}
.side-organize {
  border: 0;
  background: none;
  color: #cdd6e4;
  text-align: left;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
}
.theme-dots {
  display: flex;
  gap: 6px;
  margin-top: 9px;
}
.theme-dot {
  border: 2px solid transparent;
  outline: 0;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--accent);
}
.theme-dot[data-theme="magenta"] {
  background: #c32cdc;
}
.theme-dot[data-theme="purple"] {
  background: #8236ea;
}
.theme-dot[data-theme="blue"] {
  background: #265de6;
}
.theme-dot[data-theme="cyan"] {
  background: #0596b5;
}
.theme-dot[data-theme="teal"] {
  background: #059c7f;
}
.theme-dot[data-theme="amber"] {
  background: #df8300;
}
.theme-dot[data-theme="orange"] {
  background: #f25b08;
}
.theme-dot[data-theme="red"] {
  background: #e52b50;
}
.theme-dot[aria-pressed="true"] {
  border-color: white;
  box-shadow: 0 0 0 2px #8b8294;
}
.side-account {
  background: #202936;
  border: 1px solid #3a4352;
  border-radius: 14px;
  padding: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 11px;
  color: white;
}
.side-account small {
  font-size: 9px;
  display: block;
  color: #8ea1bb;
}
.topbar {
  position: fixed;
  left: var(--sidebar);
  right: 0;
  top: 0;
  height: 71px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fffffff2;
  border-bottom: 1px solid #e7edf5;
  padding: 0 6%;
  z-index: 20;
  backdrop-filter: blur(12px);
}
.search {
  width: 420px;
  max-width: 45vw;
  position: relative;
}
.search .icon {
  position: absolute;
  left: 13px;
  top: 12px;
  color: #8ba0bb;
}
.search input {
  padding-left: 37px;
  border-radius: 18px;
  background: #f8fafc;
}
.topbar .icon-btn {
  border-radius: 50%;
}
.topbar-user {
  font-size: 12px;
  min-width: 115px;
}
.topbar-user small {
  display: block;
  font-size: 10px;
}
.notification-button {
  position: relative;
}
.notification-button .count {
  position: absolute;
  right: -5px;
  top: -5px;
  background: var(--accent);
}
.sync-badge {
  border: 1px solid #aadccd;
  background: #f0fcf7;
  color: #047759;
  padding: 7px 12px;
  border-radius: 12px;
  font-size: 11px;
}
.main {
  margin-left: var(--sidebar);
  padding: 100px 6% 44px;
  min-height: 100vh;
}
.page-head {
  margin-bottom: 24px;
}
.page-head .desc {
  color: var(--muted);
  max-width: 720px;
  line-height: 1.8;
  font-size: 13px;
  margin-top: 12px;
}
.page-actions {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
}
.banner {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border: 1px solid #eed0ff;
  background: #fcf4ff;
  border-radius: 16px;
  color: #861494;
  box-shadow: 0 2px 3px #33203b07;
  gap: 20px;
}
.banner p {
  font-size: 11px;
  margin-top: 4px;
  color: #b332c7;
}
.banner.pause {
  background: #f5f2ff;
  border-color: #ddd0ff;
  color: #422177;
}
.banner.pause p {
  color: #8431eb;
}
.banner.pause .tile-icon {
  background: #7523e9;
  color: white;
}
.tile-icon {
  width: 39px;
  height: 39px;
  border-radius: 13px;
  background: #f6e4fe;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tile-icon.blue {
  background: #ddecff;
  color: #225aff;
}
.tile-icon.green {
  background: #d0fae8;
  color: #029c75;
}
.tile-icon.red {
  background: #ffe2e7;
  color: #ff294e;
}
.tile-icon.yellow {
  background: #fff0bc;
  color: #c27400;
}
.filters {
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  align-items: end;
  gap: 12px;
  box-shadow: var(--shadow);
  margin-bottom: 19px;
}
.filters .field {
  flex: 1;
  min-width: 0;
}
.field label,
.field-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.5px;
  color: #587091;
  margin-bottom: 5px;
}
.filters .clear {
  border: 0;
  background: none;
  color: #8a90a0;
  padding: 7px 6px;
}
.filters small {
  margin-bottom: 8px;
  white-space: nowrap;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 12px;
  min-height: 36px;
  padding: 8px 12px;
  color: var(--ink);
}
input[readonly] {
  background: #f1f5f9;
  color: #7b8eaa;
}
select {
  cursor: pointer;
}
textarea {
  resize: vertical;
  min-height: 80px;
}
.field small {
  display: block;
  font-size: 9px;
  margin-top: 5px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 16px;
}
.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}
.kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}
.kpis.stages {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}
.kpi {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  text-align: left;
  box-shadow: var(--shadow);
  min-height: 126px;
  position: relative;
  transition:
    border var(--transition),
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}
.kpi .tile-icon {
  position: absolute;
  right: 18px;
  top: 18px;
}
.kpi .kpi-label {
  display: block;
  color: #657d9d;
  font-size: 11px;
  max-width: 76%;
  line-height: 1.45;
  min-height: 28px;
}
.kpi strong {
  display: block;
  font-size: 30px;
  line-height: 1.3;
  letter-spacing: -0.6px;
  margin: 4px 0 8px;
  font-weight: 650;
}
.kpi small {
  font-size: 10px;
  color: #91a4bf;
  display: block;
}
.kpi:hover:not(:disabled) {
  border-color: var(--hover);
  background: color-mix(in srgb, var(--hover) 4%, white);
  transform: translateY(-2px);
  box-shadow: 0 var(--elevation) 12px #11182b0b;
}
.kpi[aria-pressed="true"] {
  border: 2px solid var(--selected);
  padding: 17px;
  background: color-mix(in srgb, var(--selected) 7%, white);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--selected) 9%, transparent);
}
.kpi[aria-pressed="true"]:after {
  content: "✓";
  position: absolute;
  right: 9px;
  bottom: 6px;
  color: var(--selected);
  font-weight: 700;
}
.kpis.stages .kpi {
  padding: 18px 14px;
  min-height: 142px;
}
.kpis.stages .kpi-label {
  max-width: 70%;
  font-size: 10px;
}
.kpis.stages .tile-icon {
  width: 32px;
  height: 32px;
  right: 12px;
}
.kpis.stages strong {
  font-size: 26px;
}
.grid-main {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(250px, 1fr);
  gap: 18px;
}
.grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.grid-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.mt {
  margin-top: 18px;
}
.mb {
  margin-bottom: 18px;
}
.segmented {
  display: inline-flex;
  gap: 3px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  padding: 4px;
  box-shadow: var(--shadow);
  max-width: 100%;
  overflow: auto;
}
.segmented button {
  border: 0;
  border-radius: 10px;
  padding: 6px 10px;
  background: transparent;
  color: #7d8492;
  white-space: nowrap;
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 12px;
}
.segmented button[aria-selected="true"] {
  background: #eee8ff;
  color: #7123df;
}
.tabs {
  display: flex;
  gap: 5px;
  border-bottom: 1px solid var(--line);
  overflow: auto;
  white-space: nowrap;
  padding: 0 16px;
  background: var(--paper);
}
.tabs button {
  border: 0;
  border-bottom: 2px solid transparent;
  background: none;
  color: #828b9c;
  padding: 11px 6px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.tabs button[aria-selected="true"] {
  color: var(--ink);
  border-bottom-color: var(--ink);
}
.kanban {
  display: grid;
  grid-template-columns: repeat(4, minmax(230px, 1fr));
  gap: 14px;
  overflow-x: auto;
  align-items: start;
  padding-bottom: 8px;
}
.kanban-col {
  background: #f0f4f8;
  padding: 10px;
  border-radius: 16px;
  min-height: 270px;
}
.kanban-col header {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 3px 14px;
  font-weight: 600;
  font-size: 12px;
}
.kanban-col header .badge {
  margin-left: auto;
}
.material-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 15px;
  margin-bottom: 12px;
  position: relative;
  text-align: left;
}
.material-card:hover {
  border-color: var(--hover);
  box-shadow: 0 4px 14px #1b233309;
}
.material-card.deleted {
  border: 2px solid #ff3156;
  padding-top: 25px;
}
.material-title {
  font-size: 12px;
  font-weight: 650;
  margin-top: 10px;
  overflow-wrap: anywhere;
  cursor: pointer;
  display: block;
  color: var(--ink);
  border: 0;
  background: none;
  padding: 0;
  text-align: left;
  line-height: 1.5;
}
.technical-id {
  font-size: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #92a7c1;
  margin-top: 3px;
}
.material-tags {
  color: var(--accent);
  font-size: 10px;
  margin-top: 9px;
}
.material-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f0f3f7;
  padding-top: 12px;
  margin-top: 15px;
  gap: 5px;
}
.material-bottom small {
  font-size: 9px;
}
.delete-ribbon {
  position: absolute;
  left: 12px;
  top: -1px;
  background: #ff3518;
  color: #fff;
  font-size: 7px;
  letter-spacing: 1px;
  font-weight: 750;
  padding: 3px 7px;
  border-radius: 0 0 7px 7px;
}
.table-wrap {
  overflow: auto;
}
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 12px;
}
th {
  text-align: left;
  color: #8ea1bd;
  font-weight: 600;
  letter-spacing: 0.7px;
  font-size: 9px;
  text-transform: uppercase;
  background: #f8fafc;
}
th,
td {
  padding: 14px 18px;
  border-bottom: 1px solid #edf2f7;
}
tr:last-child td {
  border: 0;
}
.progress {
  height: 7px;
  border-radius: 7px;
  background: #edf2f8;
  overflow: hidden;
  min-width: 0;
}
.progress i {
  display: block;
  height: 100%;
  width: var(--value, 0%);
  background: var(--ink);
}
.progress.green i {
  background: var(--success);
}
.progress.red i {
  background: var(--danger);
}
.progress.blue i {
  background: var(--blue);
}
.capacity-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.capacity-row .person {
  width: 145px;
}
.capacity-row .progress {
  flex: 1;
}
.capacity-row .percent {
  width: 45px;
  text-align: right;
}
.chart {
  height: 245px;
  display: flex;
  align-items: end;
  gap: 24px;
  padding: 30px 20px 60px;
  border-bottom: 1px solid var(--line);
  margin: 10px 0 50px;
}
.bar-column {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  position: relative;
  min-width: 40px;
}
.bar-column .bar {
  width: min(55px, 85%);
  height: var(--bar-height, 0px);
  min-height: 2px;
  border-radius: 16px 16px 0 0;
  background: var(--bar-color, var(--accent));
  position: relative;
}
.bar-value {
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 5px;
}
.bar-person {
  position: absolute;
  top: calc(100% + 8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 10px;
  text-align: center;
}
.chart-empty {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-bottom: 1px solid #edf1f7;
  color: #8d9eb7;
  gap: 12px;
}
.queue-hero {
  background: #10172b;
  border: 1px solid #292840;
  border-radius: 24px;
  padding: 28px;
  color: white;
  position: relative;
  background-image: radial-gradient(
    ellipse at right top,
    #66205f50,
    transparent 60%
  );
}
.queue-hero.deleted {
  border: 3px solid #ff3d52;
}
.queue-hero h2 {
  font-size: 22px;
  overflow-wrap: anywhere;
  margin: 28px 0 4px;
}
.queue-hero .chip {
  padding: 7px 10px;
  border-radius: 12px;
  background: #ffffff1a;
  color: #d4d8e3;
  font-size: 11px;
}
.queue-hero .danger-strip {
  background: #6b14394d;
  border: 1px solid #943154;
  border-radius: 99px;
  padding: 5px 10px;
  margin: 12px 0 20px;
  font-size: 11px;
  color: #eac7d5;
}
.queue-hero .progress {
  background: #2e374c;
}
.queue-hero .progress i {
  background: var(--accent);
}
.queue-hero .technical-id {
  margin-bottom: 10px;
}
.queue-hero .eyebrow {
  color: #a5b2c6;
}
.floating-chat {
  position: fixed;
  right: 30px;
  bottom: 22px;
  z-index: 28;
  border: 0;
  background: var(--accent);
  color: white;
  padding: 11px 18px;
  border-radius: 25px;
  box-shadow: 0 10px 30px #c330d02c;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 650;
}
.floating-chat .count {
  position: absolute;
  top: -5px;
  right: -5px;
  border: 2px solid white;
  background: #7820dd;
}
.rule-box {
  padding: 23px 20px;
  border-bottom: 1px solid #edf2f7;
}
.rule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
  max-width: 1000px;
}
.rule-part {
  border: 1px solid #d3e3ff;
  border-radius: 15px;
  background: #f4f8ff;
  padding: 14px;
  font-size: 11px;
  min-height: 150px;
}
.rule-part.condition {
  border-color: #ffedb4;
  background: #fffcf2;
}
.rule-part.action {
  border-color: #f1ddff;
  background: #fcf6ff;
}
.rule-part b {
  font-size: 9px;
  display: block;
  color: var(--blue);
  letter-spacing: 0.6px;
  margin-bottom: 8px;
}
.rule-part.condition b {
  color: #b46600;
}
.rule-part.action b {
  color: var(--accent);
}
.rule-part p {
  margin-bottom: 6px;
  line-height: 1.6;
}
.rule-part ol {
  padding-left: 16px;
  margin: 0;
}
.rule-part ol li {
  margin-bottom: 6px;
}
.rule-controls {
  display: flex;
  align-items: center;
  gap: 7px;
}
.toggle {
  appearance: none;
  width: 31px;
  height: 18px;
  border: 0;
  background: #e3e9f1;
  border-radius: 12px;
  min-height: 0;
  padding: 0;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  flex-shrink: 0;
}
.toggle:after {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 14px;
  height: 14px;
  background: var(--paper);
  border-radius: 50%;
  box-shadow: 0 1px 3px #0002;
  transition: left 0.15s;
}
.toggle:checked {
  background: #121b2d;
}
.toggle:checked:after {
  left: 15px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.step {
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 16px;
  min-height: 105px;
}
.step .number {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: white;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 10px;
  margin-bottom: 10px;
}
.step p {
  font-size: 10px;
}
.profile-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 30px;
  padding: 24px;
}
.dropzone {
  border: 1px dashed #b9d4fb;
  border-radius: 14px;
  background: #f6f9ff;
  color: #6c89b0;
  padding: 13px;
  text-align: center;
  font-size: 10px;
  cursor: pointer;
  margin-top: 12px;
  display: block;
}
.dropzone input {
  display: none;
}
.provider {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}
.provider.enabled {
  border-color: #81bbff;
  background: #f2f8ff;
}
.provider p {
  font-size: 10px;
}
.sound-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.sound-btn {
  display: flex;
  gap: 10px;
  text-align: left;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  color: #647491;
}
.sound-btn[aria-pressed="true"] {
  border-color: var(--accent);
  background: var(--accent-light);
}
.sound-btn strong {
  font-size: 11px;
  display: block;
}
.sound-btn small {
  font-size: 9px;
}
.preview-card {
  border: 2px solid #00b6d4;
  border-radius: 16px;
  padding: 22px 16px 14px;
  position: relative;
}
.preview-card .ribbon {
  position: absolute;
  top: -1px;
  left: 12px;
  color: white;
  background: #00b6d4;
  font-size: 8px;
  letter-spacing: 1px;
  padding: 3px 7px;
  border-radius: 0 0 8px 8px;
}
.color-choice {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.color-choice button {
  border: 1px solid var(--line);
  background: var(--paper);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 12px;
}
.color-choice button[aria-pressed="true"] {
  background: var(--ink);
  color: white;
}
.protocol {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  margin-top: 14px;
  position: relative;
  background: var(--paper);
}
.protocol.unread {
  border: 2px solid #00c3e3;
}
.protocol > .row {
  padding: 28px 18px 18px;
}
.protocol.unread:before {
  content: "NÃO LIDO";
  font-size: 7px;
  letter-spacing: 1px;
  color: white;
  background: #00b7d5;
  position: absolute;
  top: 0;
  left: 14px;
  padding: 2px 6px;
  border-radius: 0 0 6px 6px;
}
.protocol-meta {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--paper);
}
.protocol-meta > div {
  padding: 16px;
  border-right: 1px solid #eef2f6;
  font-size: 12px;
}
.protocol-meta small {
  display: block;
  font-size: 9px;
  margin-bottom: 5px;
}
.original {
  background: #f4f8ff;
  padding: 20px;
}
.original-body {
  white-space: pre-wrap;
  background: var(--paper);
  border: 1px solid #dce7fc;
  border-radius: 12px;
  padding: 16px;
  margin-top: 10px;
  font-size: 12px;
}
.check-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.check-card {
  border: 1px solid #a7efd4;
  border-radius: 15px;
  padding: 15px;
  background: #effcf5;
  font-size: 11px;
  min-height: 120px;
}
.check-card.warn {
  background: #fffbee;
  border-color: #ffe18d;
}
.check-card.pending {
  background: #f8fafc;
  border-color: var(--line);
}
.check-card p {
  font-size: 10px;
}
.conversation-shell {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 460px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  overflow: hidden;
}
.conversation-left {
  background: #10172b;
  color: white;
  padding: 20px;
}
.conversation-left p {
  font-size: 12px;
  color: #9cabc3;
  margin: 12px 0 20px;
  line-height: 1.85;
}
.quick-question {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid #374056;
  border-radius: 16px;
  color: #c5cfde;
  background: #20283b;
  margin-bottom: 7px;
  text-align: left;
  font-size: 10px;
  line-height: 1.4;
}
.conversation-main {
  display: flex;
  flex-direction: column;
  background: #f8fafc;
  min-width: 0;
}
.message-area {
  flex: 1;
  padding: 18px;
  min-height: 280px;
  max-height: 430px;
  overflow: auto;
}
.message {
  margin-bottom: 18px;
  display: flex;
  gap: 9px;
  align-items: start;
}
.message .avatar {
  width: 25px;
  height: 25px;
  font-size: 10px;
}
.bubble {
  background: var(--paper);
  box-shadow: 0 2px 3px #111c300f;
  border: 1px solid #f1f3f7;
  border-radius: 0 18px 18px 18px;
  padding: 13px;
  max-width: 820px;
  font-size: 12px;
  line-height: 1.9;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.message-meta {
  font-size: 10px;
  color: #22334e;
  margin-bottom: 4px;
}
.message-meta time {
  font-size: 9px;
  color: #99abc2;
  margin-left: 7px;
}
.composer {
  padding: 16px;
  background: var(--paper);
  border-top: 1px solid #edf1f6;
}
.composer textarea {
  min-height: 42px;
  height: 42px;
}
.chat-list {
  border-right: 1px solid var(--line);
  background: #fafbfd;
}
.chat-person {
  padding: 16px;
  border-bottom: 1px solid #edf1f6;
}
.chat-person.active {
  border-left: 3px solid var(--accent);
  background: var(--paper);
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 7px;
}
.calendar-grid .day {
  height: 60px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  position: relative;
}
.calendar-grid .day.today {
  border: 2px solid var(--accent);
  background: var(--accent-light);
}
.calendar-grid .day.selected {
  outline: 2px solid #8233ff;
  outline-offset: 1px;
}
.calendar-grid .day.filler {
  border: 0;
  background: #fbfcfe;
  pointer-events: none;
}
.calendar-grid .weekday {
  text-align: center;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: #8da1bd;
  padding: 9px 0;
}
.calendar-grid .day .dot {
  position: absolute;
  bottom: 5px;
  left: calc(50% - 3px);
  background: var(--accent);
}
.year-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.month-mini {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  padding: 15px;
  text-align: left;
}
.proof-tabs {
  display: flex;
  gap: 7px;
  overflow: auto;
  margin-bottom: 14px;
}
.fixed-refs .row {
  padding: 15px 16px;
}
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: #11182744;
  backdrop-filter: blur(1px);
  z-index: 49;
}
.drawer {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(575px, 100vw);
  background: var(--bg);
  z-index: 50;
  overflow: auto;
  box-shadow: -12px 0 40px #10172815;
}
.drawer header {
  padding: 24px;
  position: relative;
}
.drawer header h2 {
  font-size: 17px;
  line-height: 1.5;
  overflow-wrap: anywhere;
  margin: 12px 0 5px;
}
.drawer header p {
  color: var(--muted);
}
.drawer .close {
  position: absolute;
  right: 15px;
  top: 15px;
  border: 0;
  background: none;
  color: #737d8d;
}
.drawer .tabs {
  position: sticky;
  top: 0;
  z-index: 2;
}
.drawer-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.drawer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.drawer-stat {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--paper);
  min-height: 93px;
}
.drawer-stat small {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  display: block;
  margin: 8px 0 2px;
}
.drawer-stat.deadline {
  background: #fff3f5;
  border-color: #ffbccb;
  color: #f02350;
}
.drawer-stat.deadline small {
  color: #fa4163;
}
.qa-check {
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.qa-check .number {
  height: 23px;
  width: 23px;
  background: #eff3f8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: #9aabc2;
}
.history-group {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.history-group summary {
  cursor: pointer;
  padding: 16px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  gap: 9px;
  list-style: none;
}
.history-group .row {
  align-items: start;
  font-size: 11px;
}
.file-line {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px;
  border-bottom: 1px solid #f0f4f8;
}
.file-line:last-child {
  border: 0;
}
.modal-shade {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0c162862;
  z-index: 70;
  padding: 20px;
}
.modal {
  max-width: 650px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 30px 80px #0003;
}
.modal-head {
  padding: 20px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 1;
}
.modal-body {
  padding: 20px;
}
.menu-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-top: 10px;
  padding: 13px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.menu-item .tile-icon {
  background: var(--paper);
  color: #647592;
  box-shadow: 0 2px 3px #10203612;
}
.menu-item .moves {
  margin-left: auto;
  display: flex;
  gap: 10px;
}
.modal input[type="color"] {
  height: 38px;
  padding: 3px;
}
.photo-label {
  display: block;
  cursor: pointer;
}
.photo-label input {
  display: none;
}
#toast {
  position: fixed;
  right: 25px;
  bottom: 26px;
  max-width: 450px;
  z-index: 100;
  background: #142039;
  color: white;
  border-radius: 14px;
  box-shadow: 0 8px 35px #0003;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
}
#toast.show {
  padding: 14px 18px;
  opacity: 1;
}
.skip {
  position: absolute;
  left: -1000px;
}
.skip:focus {
  left: 280px;
  top: 8px;
  z-index: 1000;
  background: var(--paper);
  padding: 10px;
}
.login {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 45% 55%;
  background: var(--paper);
}
.login-pane {
  padding: 7vh 12%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
  border-right: 8px solid #ff4054;
}
.login-logo {
  width: 100%;
  max-width: 440px;
  height: auto;
  margin-bottom: 26px;
}
.login-pane h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 24px;
}
.login-form {
  max-width: 490px;
}
.login-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin: 15px 0 6px;
}
.login-form input {
  height: 53px;
  background: var(--paper);
}
.login-form .btn {
  width: 100%;
  font-size: 17px;
  min-height: 51px;
  margin-top: 13px;
}
.login-hero {
  background: #e8ebee url("/assets/studio-art.webp") center/cover no-repeat;
  min-height: 100vh;
}
.login-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: #161e29;
  color: #cad3df;
  display: flex;
  justify-content: space-between;
  padding: 9px 24px;
  font-size: 11px;
}
.login-link {
  display: block;
  border: 0;
  background: none;
  color: #248bff;
  padding: 0;
  margin-top: 22px;
  text-align: left;
}
.login-password {
  position: relative;
}
.login-password input {
  padding-right: 46px;
}
.login-password button {
  position: absolute;
  right: 8px;
  top: 9px;
  border: 0;
  background: none;
  padding: 7px;
}
.login-error {
  color: #bb1640;
  margin-top: 10px;
  font-size: 13px;
}
.google-logo {
  font-size: 25px;
  color: #4285f4;
  font-weight: 750;
}
.auth-pending {
  font-size: 11px;
  color: #7b8da6;
  line-height: 1.7;
  margin-top: 20px;
}
.mobile-toggle {
  display: none;
}
.mobile-backdrop {
  display: none;
}
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.capabilities-grid > div {
  padding: 20px;
  border-right: 1px solid #edf1f7;
}
.capabilities-grid .icon {
  color: var(--accent);
  margin-bottom: 14px;
}
.finance-rates {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 18px 0;
}
.finance-rates .panel {
  padding: 15px;
}
.finance-rates small {
  display: block;
  margin-top: 8px;
}
.long-text {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.rule-json {
  font-family: ui-monospace, monospace;
  font-size: 11px;
  min-height: 280px;
}
.sticky-action {
  position: sticky;
  bottom: 0;
  background: var(--bg);
  padding-top: 10px;
}
.release-note {
  font-size: 10px;
  color: #91a2b9;
  padding: 12px 16px;
}
.login-heading-logo {
  display: none;
}
.inline-error {
  color: #b52b4b;
  background: #fff1f4;
  border: 1px solid #ffc6d4;
  padding: 12px;
  border-radius: 12px;
}
.skeleton {
  background: linear-gradient(90deg, #edf1f7, #f8fafc, #edf1f7);
  min-height: 100px;
  border-radius: 16px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
[hidden] {
  display: none !important;
}
@media (min-width: 1700px) {
  .main {
    padding-left: 98px;
    padding-right: 98px;
  }
  .topbar {
    padding-left: 98px;
    padding-right: 98px;
  }
}
@media (max-width: 1400px) {
  :root {
    --sidebar: 234px;
  }
  .main {
    padding-left: 32px;
    padding-right: 32px;
  }
  .topbar {
    padding-left: 32px;
    padding-right: 32px;
  }
  .kpis.stages {
    grid-template-columns: repeat(4, 1fr);
  }
  .kpis.stages .kpi {
    min-height: 122px;
  }
  .grid-main {
    grid-template-columns: 2fr 1fr;
  }
  .profile-grid {
    grid-template-columns: 190px 1fr;
    gap: 20px;
  }
  .search {
    width: 360px;
  }
  .rule-grid {
    max-width: none;
  }
}
@media (max-width: 1050px) {
  .grid-main {
    grid-template-columns: 1fr;
  }
  .kpis {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-three {
    grid-template-columns: 1fr;
  }
  .rule-grid {
    grid-template-columns: 1fr;
  }
  .rule-part {
    min-height: 0;
  }
  .topbar-user {
    display: none;
  }
  .filters {
    flex-wrap: wrap;
  }
  .filters .field {
    min-width: 130px;
  }
  .conversation-shell {
    grid-template-columns: 220px 1fr;
  }
  .profile-grid {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .sound-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .year-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 760px) {
  :root {
    --sidebar: 260px;
  }
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.2s;
  }
  .sidebar.mobile-open {
    transform: translateX(0);
  }
  .mobile-backdrop.open {
    display: block;
    position: fixed;
    inset: 0;
    background: #0006;
    z-index: 29;
  }
  .mobile-toggle {
    display: inline-flex;
  }
  .topbar {
    left: 0;
    height: 64px;
    padding: 0 16px;
    gap: 8px;
  }
  .topbar .sync-badge {
    display: none;
  }
  .search {
    max-width: none;
    width: 100%;
    flex: 1;
  }
  .topbar .search input {
    font-size: 11px;
  }
  .topbar .search .icon {
    width: 14px;
  }
  .main {
    margin-left: 0;
    padding: 84px 16px 95px;
  }
  .topbar-right {
    gap: 8px;
  }
  .topbar-right > .avatar {
    display: none;
  }
  h1 {
    font-size: 26px;
  }
  .page-actions {
    align-items: start;
    flex-direction: column;
  }
  .filters .field {
    flex-basis: 45%;
  }
  .kpis.stages {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-two,
  .profile-grid,
  .conversation-shell {
    grid-template-columns: 1fr;
  }
  .conversation-left {
    border-radius: 15px 15px 0 0;
  }
  .conversation-left p {
    margin: 8px 0 12px;
  }
  .quick-question {
    display: inline-flex;
    width: auto;
    margin: 4px;
    font-size: 10px;
  }
  .conversation-shell .chat-list {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    display: flex;
    overflow: auto;
  }
  .chat-list .chat-person {
    min-width: 190px;
  }
  .banner {
    gap: 10px;
    align-items: start;
    flex-direction: column;
  }
  .banner > .flex {
    align-items: start;
  }
  .banner .btn {
    font-size: 10px;
    align-self: end;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .rule-controls {
    flex-wrap: wrap;
  }
  .rule-box > .between {
    flex-direction: column;
    align-items: start;
  }
  .protocol-meta {
    grid-template-columns: repeat(2, 1fr);
  }
  .protocol > .row {
    align-items: start;
    flex-wrap: wrap;
  }
  .protocol .check-grid {
    grid-template-columns: 1fr;
  }
  .capabilities-grid {
    grid-template-columns: 1fr 1fr;
  }
  .calendar-grid {
    gap: 4px;
  }
  .calendar-grid .day {
    height: 47px;
    border-radius: 10px;
  }
  .year-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .queue-hero {
    padding: 22px 18px;
  }
  .queue-hero h2 {
    font-size: 17px;
  }
  .floating-chat {
    bottom: 18px;
    right: 18px;
  }
  .drawer-body {
    padding: 18px;
  }
  .login {
    display: block;
  }
  .login-pane {
    border-right: 0;
    padding: 50px 25px 100px;
    min-height: 100vh;
  }
  .login-hero {
    display: none;
  }
  .login-pane h1 {
    font-size: 36px;
  }
  .login-footer {
    font-size: 9px;
    padding: 9px 15px;
  }
  .login-footer span:last-child {
    display: none;
  }
  .finance-rates {
    grid-template-columns: repeat(2, 1fr);
  }
  .capacity-row .person {
    width: 110px;
  }
  .kpi .kpi-label {
    max-width: 65%;
  }
  .queue-hero .between {
    flex-wrap: wrap;
  }
  .modal-shade {
    padding: 8px;
  }
  .drawer .tabs {
    padding: 0 12px;
  }
  .drawer .tabs button {
    font-size: 11px;
  }
  .panel-body {
    padding: 16px;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .table-wrap table {
    min-width: 650px;
  }
  .sound-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.attachment-link {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 7px;
  padding: 11px 13px;
  border: 1px solid #cfe0f8;
  border-radius: 13px;
  background: #f4f8ff;
  color: #19365f;
  text-decoration: none;
  max-width: 820px;
}
.attachment-link:hover {
  border-color: #78a9ed;
  background: #edf5ff;
}
.attachment-link span {
  min-width: 0;
}
.attachment-link strong,
.attachment-link small {
  display: block;
  overflow-wrap: anywhere;
}
.attachment-link small {
  margin-top: 3px;
  color: #6e83a0;
  font-size: 9px;
}
.dropzone.selected {
  border-color: #39a36f;
  background: #effbf5;
  color: #17653d;
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
