:root {
  --purple: #705398;
}
.work-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
}
.work-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
  flex-wrap: wrap;
}
.work-filters .search {
  max-width: 250px;
  min-width: 155px;
}
.work-filters select {
  font-size: 11px;
  max-width: 185px;
  background: #fff;
}
.work-filters select.filtered {
  border-color: #bca9d0;
  background: #f7f2fc;
  color: #705398;
}
.view-switch {
  flex-shrink: 0;
}
.w-table {
  min-width: 910px;
}
.w-table th {
  padding: 13px 14px;
}
.w-table td {
  padding: 16px 14px;
  font-size: 11px;
}
.w-table th:first-child,
.w-table td:first-child {
  width: 40px;
  padding-left: 17px;
  padding-right: 0;
}
.w-table th:nth-child(2) {
  width: 35%;
}
.w-table th:nth-child(3) {
  width: 22%;
}
.w-table .item-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
  text-align: left;
}
.item-title:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.item-title.done-item {
  color: #8b8396;
}
.w-table .item-icon {
  color: #a18ab8;
  width: 18px;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
}
.item-icon svg {
  height: 16px;
  width: 16px;
}
.w-table .row {
  gap: 10px;
  align-items: flex-start;
}
.w-table .item-icon {
  margin-top: 2px;
}
.w-table .owner {
  font-size: 10px;
}
.w-table .owner .avatar {
  height: 23px;
  width: 23px;
  font-size: 9px;
}
.w-table .schedule {
  font-size: 10px;
}
.type-label {
  font-size: 10px;
  color: #9e93a8;
  margin-top: 3px;
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  min-width: 0;
}
.work-tag {
  font-size: 10px;
  line-height: 1.4;
  min-height: 23px;
  padding: 3px 7px;
  border-radius: 5px;
  background: var(--tag-bg, #f2edf8);
  color: var(--tag-color, #826399);
  border: 1px solid transparent;
  max-width: 100%;
  white-space: normal;
  text-align: left;
  overflow-wrap: anywhere;
  font-weight: 600;
  gap: 4px;
}
.work-tag:before {
  content: "#";
  opacity: 0.65;
  font-weight: 450;
}
.work-tag:hover {
  background: var(--tag-bg, #f2edf8);
  border-color: var(--tag-color, #826399);
  filter: brightness(0.99);
}
.tag-empty {
  color: #b0a8b9;
  font-size: 10px;
}
.pick-row {
  height: 14px;
  width: 14px;
  min-height: 14px;
  accent-color: var(--purple);
  cursor: pointer;
  margin: 2px 0 0;
}
.w-table tr.selected {
  background: #f7f3fc;
}
.work-results-footer {
  font-size: 10px;
  color: #9b90a6;
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.work-results-footer svg {
  height: 13px;
  width: 13px;
}
.work-results-footer .row {
  gap: 6px;
}
.bulk-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: #f0e9fa;
  border: 1px solid #ddd0ed;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 11px;
  color: #72528e;
}
.bulk-bar .primary {
  font-size: 11px;
  min-height: 30px;
  padding: 6px 10px;
  background: #765698;
  border-color: #765698;
}
.bulk-bar .text {
  font-size: 11px;
  color: #8d76a2;
}
.kanban-scroll {
  overflow-x: auto;
  padding-bottom: 7px;
}
.w-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 13px;
  min-width: 932px;
}
.w-column {
  background: #efedf3;
  border-radius: 10px;
  padding: 11px;
  min-width: 0;
  min-height: 430px;
}
.w-column-heading {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 4px 3px 15px;
  font-size: 11px;
  font-weight: 700;
  color: #736c80;
}
.w-column-heading .count {
  margin-left: auto;
  background: #e3dfe9;
}
.column-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a79bb3;
}
.w-column:nth-child(2) .column-dot {
  background: #a58abd;
}
.w-column:nth-child(3) .column-dot {
  background: #cbaa6a;
}
.w-column:nth-child(4) .column-dot {
  background: #82a691;
}
.w-card {
  background: white;
  border: 1px solid #e4deec;
  border-radius: 9px;
  padding: 15px;
  margin-bottom: 10px;
  cursor: pointer;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
  min-width: 0;
}
.w-card:hover {
  border-color: #b7a0cf;
  box-shadow: 0 3px 12px #20132e08;
}
.w-card h3 {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.55;
  margin: 12px 0 9px;
  overflow-wrap: anywhere;
}
.w-card .card-type {
  font-size: 9px;
  color: #9d90a9;
  display: flex;
  align-items: center;
  gap: 5px;
}
.w-card .card-type svg {
  width: 13px;
  height: 13px;
}
.w-card .tag-list {
  margin: 0 0 15px;
  gap: 4px;
}
.w-card .work-tag {
  font-size: 9px;
  min-height: 21px;
  padding: 3px 6px;
}
.w-card footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 13px;
  font-size: 9px;
  color: #a298ab;
}
.w-card footer .avatar {
  width: 22px;
  height: 22px;
  font-size: 9px;
}
.w-card footer .schedule {
  font-size: 9px;
  gap: 4px;
}
.w-card footer .schedule svg {
  height: 11px;
  width: 11px;
}
.w-card .badge {
  font-size: 9px;
}
.w-card .stage-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.w-card .card-select {
  opacity: 0;
  transition: opacity 0.15s;
}
.w-card:hover .card-select,
.w-card:focus-within .card-select,
.w-card.selected .card-select {
  opacity: 1;
}
.w-card.selected {
  background: #fbf8ff;
  border-color: #b99bcf;
}
.column-empty {
  font-size: 11px;
  color: #a79bae;
  border: 1px dashed #d6ccdf;
  border-radius: 8px;
  text-align: center;
  padding: 25px 15px;
  margin-bottom: 10px;
}
.w-column .add-card svg {
  width: 14px;
}
.tag-filter-note {
  padding: 9px 12px;
  background: #f1ebf8;
  border: 1px solid #e3d9ee;
  border-radius: 7px;
  margin-bottom: 15px;
  color: #887096;
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.tag-filter-note .text {
  font-size: 10px;
  margin-left: auto;
}
.tag-filter-note svg {
  width: 13px;
  height: 13px;
}
.tag-edit-area {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px;
  background: #fff;
}
.tag-edit-area .tag-list {
  margin-bottom: 8px;
  min-height: 25px;
}
.tag-edit-area .work-tag {
  font-size: 11px;
  min-height: 27px;
}
.work-tag.tag-choice {
  background: #faf8fc;
  color: #8e7b9e;
  border-color: #e8e0ef;
}
.work-tag.tag-choice.chosen {
  background: #eee5f8;
  color: #745090;
  border-color: #bf9cd9;
}
.tag-entry {
  display: flex;
  gap: 7px;
  align-items: center;
  border-top: 1px solid #f0edf5;
  padding-top: 10px;
}
.tag-entry input {
  min-width: 0;
  min-height: 34px;
  font-size: 11px;
  flex: 1;
  padding: 8px 10px;
}
.tag-entry button {
  min-height: 34px;
  font-size: 11px;
  padding: 7px 11px;
}
.tag-help {
  font-size: 10px;
  color: #9b8aa8;
  margin-top: 9px;
  line-height: 1.6;
}
.record-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 25px;
  padding: 22px 0;
  border-block: 1px solid var(--line);
  margin: 25px 0;
}
.record-meta label {
  display: block;
  font-size: 10px;
  color: #95899f;
  margin-bottom: 8px;
}
.record-meta .tag-property {
  grid-column: 1/-1;
}
.record-meta .schedule {
  font-size: 12px;
}
.record-meta .owner {
  font-size: 12px;
}
.record-meta .tag-list {
  gap: 6px;
}
.record-meta select {
  max-width: 180px;
  padding: 7px 10px;
  min-height: 32px;
  font-size: 11px;
}
.record-section {
  margin-top: 24px;
}
.record-section > h3 {
  font-size: 13px;
}
.record-insight {
  border: 1px solid #e9e3ee;
  border-radius: 8px;
  padding: 13px 15px;
  margin-top: 10px;
}
.record-insight p {
  font-size: 11px !important;
  line-height: 1.6;
  color: #8a7e95 !important;
  margin-top: 7px;
}
.record-insight strong {
  display: block;
  font-size: 12px;
  line-height: 1.6;
  margin-top: 8px;
}
.record-insight .source-chip {
  font-size: 9px;
}
.record-update {
  padding-top: 18px;
  margin-top: 25px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  color: #a799b0;
  line-height: 1.7;
}
.drawer .modal-head .row {
  gap: 6px;
}
.drawer .modal-head button {
  font-size: 11px;
}
.drawer .modal-head {
  padding: 18px 22px;
  min-height: 73px;
}
.clear-filter {
  white-space: nowrap;
  font-size: 11px !important;
  color: #8e799e !important;
  min-height: 30px !important;
}
.badge.to-do {
  background: #f0f0f4;
  color: #787583;
}
.badge.in-progress {
  background: #f0ebfa;
  color: #79579f;
}
.sidebar-note-simple {
  font-size: 10px;
  color: #91869c;
  line-height: 1.6;
}
.work-count {
  font-size: 11px;
  color: #9a8fa5;
}
.mobile-only {
  display: none;
}
@media (min-width: 721px) {
  .w-column {
    height: calc(100vh - 412px);
    min-height: 410px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #ccc2d7 transparent;
  }
  .w-column-heading {
    position: sticky;
    top: -11px;
    z-index: 1;
    background: #efedf3;
    padding-top: 12px;
    margin-top: -8px;
  }
  .w-board {
    align-items: start;
  }
}
@media (min-width: 1600px) {
  .w-table td {
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .w-board {
    gap: 17px;
  }
  .w-card {
    padding: 18px;
  }
}
@media (max-width: 1150px) {
  .work-toolbar {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .work-filters {
    flex-basis: 100%;
  }
  .view-switch {
    margin-left: auto;
  }
  .w-table {
    min-width: 820px;
  }
  .w-table td,
  .w-table th {
    padding-left: 10px;
    padding-right: 10px;
  }
  .w-table th:nth-child(2) {
    width: 32%;
  }
}
@media (max-width: 720px) {
  .work-toolbar {
    gap: 12px;
  }
  .work-filters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .work-filters .search {
    max-width: none;
    grid-column: 1/-1;
    min-width: 0;
  }
  .work-filters select {
    max-width: none;
    width: 100%;
    min-width: 0;
    font-size: 11px;
    padding: 10px;
  }
  .work-filters select:nth-of-type(3) {
    grid-column: 1;
  }
  .work-filters .clear-filter {
    justify-self: end;
  }
  .w-table {
    min-width: 0;
  }
  .w-table thead {
    display: none;
  }
  .w-table tr {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr) auto;
    gap: 10px 7px;
    padding: 17px 15px;
    border-bottom: 1px solid var(--line);
  }
  .w-table tr:last-child {
    border-bottom: 0;
  }
  .w-table td {
    border: 0 !important;
    padding: 0 !important;
  }
  .w-table td:first-child {
    width: auto;
    grid-column: 1;
    grid-row: 1;
    margin-top: 3px;
  }
  .w-table td:nth-child(2) {
    grid-column: 2/-1;
    grid-row: 1;
  }
  .w-table td:nth-child(3) {
    grid-column: 2/-1;
    grid-row: 2;
  }
  .w-table td:nth-child(4) {
    grid-column: 2;
    grid-row: 3;
  }
  .w-table td:nth-child(5) {
    grid-column: 3;
    grid-row: 3;
  }
  .w-table td:nth-child(6) {
    grid-column: 2;
    grid-row: 4;
  }
  .w-table .item-icon {
    display: none;
  }
  .w-table .item-title {
    font-size: 13px;
  }
  .w-table .owner .avatar {
    height: 21px;
    width: 21px;
  }
  .work-results-footer {
    font-size: 9px;
    align-items: flex-start;
    line-height: 1.5;
  }
  .work-results-footer .row {
    align-items: flex-start;
    max-width: 210px;
  }
  .work-results-footer .row svg {
    flex-shrink: 0;
  }
  .kanban-scroll {
    overflow: visible;
  }
  .w-board {
    grid-template-columns: minmax(0, 1fr);
    min-width: 0;
    gap: 15px;
  }
  .w-column {
    min-height: 0;
    padding: 13px;
  }
  .w-card {
    padding: 17px;
  }
  .w-card h3 {
    font-size: 13px;
  }
  .w-card .card-select {
    opacity: 1;
  }
  .work-results-footer > span {
    white-space: nowrap;
  }
  .tag-filter-note {
    font-size: 10px;
    line-height: 1.5;
  }
  .tag-filter-note .text {
    flex-shrink: 0;
  }
  .record-meta {
    gap: 18px;
  }
  .bulk-bar {
    gap: 9px;
    flex-wrap: wrap;
  }
  .page-head p {
    max-width: 245px;
  }
  .sidebar:not(.open) {
    visibility: hidden;
  }
  .sidebar.open {
    visibility: visible;
  }
  .mobile-only {
    display: inline;
  }
}

/* Compact work list: ordinary rows with focused inline edits. */
.sheet {
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.sheet-scroll {
  overflow: visible;
}
.sheet-table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
  border-collapse: collapse;
  text-align: left;
}
.sheet-table col.col-num {
  width: 40px;
}
.sheet-table col.col-title {
  width: auto;
}
.sheet-table col.col-type {
  width: 8%;
}
.sheet-table col.col-tags {
  width: 16%;
}
.sheet-table col.col-owner {
  width: 15%;
}
.sheet-table col.col-stage {
  width: 12%;
}
.sheet-table col.col-due {
  width: 10%;
}
.sheet-table th {
  padding: 0;
  background: #faf9fc;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 600;
}
.sheet-table td {
  padding: 17px 12px;
  border: 0;
  border-bottom: 1px solid #eeecf2;
  vertical-align: middle;
  font-size: 13px;
}
.sheet-table tr:last-child td {
  border-bottom: 0;
}
.sheet-table tr:hover td {
  background: #fcfbfd;
}
.sheet-table tr.selected td {
  background: #f5f1fa;
}
.sheet-table th:first-child,
.sheet-table td:first-child {
  text-align: center;
  padding: 12px;
}
.sheet-header {
  border: 0;
  background: none;
  border-radius: 0;
  width: 100%;
  justify-content: flex-start;
  padding: 12px;
  font-size: 12px;
  color: var(--muted);
}
.sheet-header .sort-arrow {
  margin-left: auto;
}
.sheet-cell {
  cursor: pointer;
  outline: none;
}
.sheet-cell:focus-visible {
  outline: 2px solid #9783b8;
  outline-offset: -3px;
  border-radius: 4px;
}
.cell-value {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: var(--navy);
}
.work-title {
  padding: 0;
  border: 0;
  background: none;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
  min-height: 0;
  text-align: left;
  overflow-wrap: anywhere;
}
.work-title:hover {
  background: none;
  text-decoration: underline;
}
.work-edit-title {
  padding: 3px;
  min-height: 24px;
  border: 0;
  background: none;
  color: var(--muted);
  margin-left: auto;
  flex-shrink: 0;
}
.cell-value .owner {
  font-size: 12px;
  overflow-wrap: anywhere;
}
.cell-value .avatar {
  width: 25px;
  height: 25px;
  font-size: 9px;
  flex-shrink: 0;
}
.cell-value .badge {
  font-size: 11px;
  white-space: normal;
}
.cell-value .work-tag {
  font-size: 11px;
  padding: 3px 7px;
  height: auto;
  min-height: 0;
  overflow-wrap: anywhere;
  white-space: normal;
}
.cell-tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  min-width: 0;
}
.cell-tag-more,
.cell-muted,
.cell-format,
.cell-date {
  font-size: 12px;
  color: var(--muted);
}
.sheet-check {
  width: 15px;
  height: 15px;
  min-height: 15px;
  padding: 0;
  margin: 0;
  accent-color: var(--navy);
  cursor: pointer;
}
.cell-editor {
  width: 100%;
  min-width: 0;
  font-size: 13px;
  padding: 8px;
}
.sheet-add-input {
  border: 0;
  background: none;
  width: 100%;
  min-height: 34px;
  font-size: 13px;
  padding: 6px 0;
}
.sheet-add-number {
  color: var(--muted);
}
.sheet-table .sheet-add-cell {
  padding: 7px 12px;
}
.work-table-status {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 6px 16px;
  font-size: 12px;
}
.locked-icon {
  display: none;
}
@media (max-width: 960px) {
  .sheet-table,
  .sheet-table tbody {
    display: block;
  }
  .sheet-table colgroup {
    display: none;
  }
  .sheet-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
  }
  .sheet-table tbody tr {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-bottom: 1px solid var(--line);
    padding: 14px;
    gap: 12px;
    position: relative;
  }
  .sheet-table tbody tr:last-child {
    border: 0;
  }
  .sheet-table td {
    display: block;
    padding: 0;
    border: 0;
    min-width: 0;
  }
  .sheet-table td.work-select {
    position: absolute;
    top: 19px;
    left: 14px;
    padding: 0;
  }
  .sheet-table td[data-key="title"] {
    grid-column: 1/-1;
    padding-left: 28px;
  }
  .sheet-cell:not([data-key="title"])::before {
    content: attr(data-label);
    display: block;
    color: var(--muted);
    font-size: 10px;
    margin-bottom: 5px;
  }
  .sheet-table .work-new-row {
    display: flex;
    align-items: center;
  }
  .sheet-table .sheet-add-cell {
    padding: 0;
    flex: 1;
  }
  .sheet-table td.sheet-add-number {
    padding: 0;
  }
}
.sheet-popover {
  position: fixed;
  z-index: 45;
  width: 285px;
  max-width: calc(100vw - 24px);
  background: white;
  border: 1px solid #dcd0e7;
  box-shadow: 0 8px 30px #35204924;
  border-radius: 9px;
  padding: 14px;
}
.sheet-popover h3 {
  font-size: 12px;
  margin-bottom: 12px;
}
.sheet-popover .tag-entry {
  margin-top: 10px;
}
.sheet-popover .tag-entry input {
  width: 100%;
}
.sheet-popover .tag-choice svg {
  height: 11px;
  width: 11px;
}
.sheet-popover .tag-choice {
  font-size: 10px;
}
.sheet-popover .tag-list {
  gap: 6px;
}
.sheet-popover-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #eee6f3;
}
.sheet-popover-footer button {
  font-size: 10px;
  min-height: 28px;
  padding: 5px 9px;
}
.sheet-popover-footer .text {
  font-size: 10px;
}
.sheet-popover .tag-entry button {
  font-size: 10px;
  min-height: 31px;
}
.sheet-popover .tag-entry input {
  font-size: 10px;
  min-height: 31px;
}

.work-tabs {
  display: flex;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}
.work-tabs button {
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  padding: 0 2px 13px;
  color: var(--muted);
  font-size: 12px;
  gap: 7px;
}
.work-tabs button.active {
  color: var(--navy);
  border-color: var(--coral);
}
.work-tabs .count {
  font-size: 10px;
  padding: 2px 5px;
  background: #eeeaf4;
  border-radius: 4px;
}
.work-tag.tag-choice .checkmark {
  font-size: 10px;
}
.sheet-notice {
  padding: 12px 15px;
  border: 1px solid #e6c6af;
  border-radius: 8px;
  background: #fff6ec;
  margin-bottom: 16px;
  font-size: 12px;
  line-height: 1.6;
}
.sheet-notice textarea {
  display: block;
  width: 100%;
  margin: 10px 0;
  max-height: 100px;
}
.sheet-notice .row {
  margin-top: 10px;
}
.sheet-cell .locked-icon svg {
  width: 11px;
  height: 11px;
}
.sheet-bar .work-saving {
  color: #765294;
}
.work-board-title {
  padding: 0;
  border: 0;
  background: none;
  text-align: left;
  min-height: 0;
  font-size: 12px;
  line-height: 1.55;
  display: block;
}
.work-board-title:hover {
  background: none;
  text-decoration: underline;
}
.w-card {
  cursor: default;
}
.w-card .card-select {
  opacity: 0.65;
}
.work-empty {
  padding: 55px 25px;
  text-align: center;
}
.work-empty p {
  color: var(--muted);
  margin: 10px 0 20px;
}
.work-new-row input:disabled {
  opacity: 0.5;
}
.sheet-popover button {
  cursor: pointer;
}
.sheet-popover .work-tag {
  justify-content: flex-start;
}
.work-tag.tag-color-0 {
  --tag-bg: #fceee7;
  --tag-color: #a6785c;
}
.work-tag.tag-color-1 {
  --tag-bg: #efe8f9;
  --tag-color: #8a68aa;
}
.work-tag.tag-color-2 {
  --tag-bg: #eaf3ec;
  --tag-color: #6a9477;
}
.work-tag.tag-color-3 {
  --tag-bg: #eaf0fa;
  --tag-color: #6f86ad;
}
.work-tag.tag-color-4 {
  --tag-bg: #f9f1df;
  --tag-color: #a08753;
}
.work-tag.tag-color-5 {
  --tag-bg: #f2eaf3;
  --tag-color: #9b76a1;
}
.work-filters .search input {
  width: 100%;
  padding-left: 32px;
}
.work-filters .search {
  position: relative;
}
.work-filters .search svg {
  position: absolute;
  left: 10px;
  top: 12px;
  width: 14px;
  height: 14px;
  color: var(--muted);
}
.work-filters .search {
  flex: 1;
}
.view-switch {
  display: flex;
  gap: 2px;
  background: #f0edf5;
  padding: 3px;
  border-radius: 7px;
}
.view-switch button {
  border: 0;
  min-height: 31px;
  padding: 6px 11px;
  font-size: 11px;
  background: none;
  color: var(--muted);
}
.view-switch button.active {
  background: white;
  color: var(--navy);
  box-shadow: 0 1px 3px #17152b12;
}
.work-ic {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.w-board .avatar {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 9px;
}
.w-board .badge {
  font-size: 10px;
}
.sheet-cell .owner {
  display: flex;
  gap: 6px;
  align-items: center;
}
.sheet-cell .avatar {
  display: inline-grid;
  place-items: center;
}
.sheet-popover .tag-list {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.sheet-popover .tag-entry input {
  min-width: 0;
}
.work-footer {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 15px;
  color: #998ca4;
  font-size: 10px;
}
.work-tags-text {
  font-size: 11px;
  color: var(--muted);
}
.badge.idea,
.badge.todo {
  background: #f0f0f4;
  color: #787583;
}
.badge.in_progress {
  background: #f0ebfa;
  color: #79579f;
}
.badge.done {
  background: #eaf4ee;
  color: #50836a;
}
.work-task-links {
  margin-top: 20px;
}
.work-task-links button {
  text-align: left;
}
.work-tags-help {
  font-size: 11px;
  color: var(--muted);
}
@media (max-width: 720px) {
  .work-tabs {
    gap: 17px;
    overflow-x: auto;
  }
  .work-tabs button {
    font-size: 11px;
    white-space: nowrap;
  }
  .work-filters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .work-filters .search {
    grid-column: 1/-1;
  }
  .work-filters select {
    width: 100%;
    max-width: none;
  }
  .work-toolbar {
    flex-wrap: wrap;
  }
  .work-filters {
    flex-basis: 100%;
  }
  .work-footer {
    font-size: 9px;
  }
  .sheet-bar .sheet-key-hint {
    display: none;
  }
  .sheet-popover {
    max-height: calc(100dvh - 24px);
    overflow: auto;
  }
  .sheet-cell .owner-name {
    display: inline;
  }
  .w-board {
    grid-template-columns: minmax(0, 1fr);
    min-width: 0;
  }
  .w-column {
    height: auto;
    min-height: 0;
  }
  .sheet-table td:nth-child(2),
  .sheet-table th:nth-child(2) {
    position: static !important;
  }
}
