/* ==========================================================================
   Settings kit — styles for the eight administration shapes

   Loaded after core/components.css. Everything reads the shell's tokens, so
   both themes come free and nothing is a color literal.

   RESPONSIVE
   Nothing here has a fixed width. The table becomes cards through the
   shell's own rules, forms go from two columns to one, the permission
   matrix keeps its row labels because the row header is a `th`, and the
   drawer becomes a full height sheet below 640px. At 320px every screen
   still shows every control: nothing is hidden by width, only re-laid.

   WCAG
   A switch is a real checkbox with a visible focus ring on the track it
   controls. Every interactive target is at least 24px. State is never
   carried by color alone: a status is a word, a yes is the word Yes, a
   selected tab has a weight and an underline as well as a tint.
   ========================================================================== */

/* --------------------------------------------------------- variants ----- */

.notice-warning { border-color: var(--warning); background: var(--warning-soft); color: var(--warning); }
.notice-danger  { border-color: var(--destructive); background: var(--destructive-soft); color: var(--destructive); }

/* ------------------------------------------------------------- head ----- */

.sk-head {
  display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: space-between;
  gap: 10px 16px; padding-bottom: 12px; margin-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.sk-head-main { min-width: 0; flex: 1 1 280px; }
.sk-crumb {
  display: inline-flex; align-items: center; min-height: 24px; padding: 2px 4px;
  margin-left: -4px; border-radius: var(--r-sm);
  background: none; border: 0; font: inherit; cursor: pointer;
  color: var(--muted-foreground); text-transform: inherit; letter-spacing: inherit;
}
.sk-crumb:hover { color: var(--foreground); text-decoration: underline; }
.sk-crumb:focus-visible { outline: 2px solid var(--ring); outline-offset: 2px; border-radius: 3px; }
.sk-title {
  margin: 2px 0 0; font-size: 21px; font-weight: 700; letter-spacing: -.025em;
  line-height: 1.2; text-wrap: balance;
}
@media (min-width: 1024px) { .sk-title { font-size: 24px; } }
.sk-desc { margin: 4px 0 0; font-size: 12.5px; line-height: 1.5; color: var(--muted-foreground); max-width: 72ch; }
.sk-head-acts { display: flex; gap: 8px; flex-wrap: wrap; flex: none; }
@media (max-width: 560px) {
  .sk-head-acts { width: 100%; }
  .sk-head-acts .btn { flex: 1 1 auto; justify-content: center; }
}

/* Where the fields came from. Quiet when confirmed, marked when not. */
.sk-source {
  display: flex; align-items: flex-start; gap: 7px; margin: 0 0 14px;
  font-size: 11.5px; line-height: 1.5; color: var(--muted-foreground);
}
.sk-source.is-open {
  padding: 8px 11px; border-radius: var(--r-md);
  background: var(--warning-soft); color: var(--warning); font-weight: 600;
}

/* ---------------------------------------------------------- toolbar ----- */

.sk-tb {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 8px 12px; margin-bottom: 12px;
}
.sk-tb-fields { display: flex; flex-wrap: wrap; gap: 8px; flex: 1 1 320px; min-width: 0; }
.sk-tb-field { flex: 1 1 180px; min-width: 0; }
.sk-tb-field .filter-input, .sk-tb-field .sk-select { width: 100%; min-width: 0; }
.sk-tb-acts { display: flex; flex-wrap: wrap; gap: 7px; flex: none; }
@media (max-width: 560px) {
  .sk-tb-acts { width: 100%; }
  .sk-tb-acts .btn { flex: 1 1 auto; justify-content: center; }
}

.sk-select {
  font: inherit; font-size: 12.5px; min-height: 34px; padding: 5px 30px 5px 10px;
  min-width: 0; text-overflow: ellipsis;
  border: 1px solid var(--input); border-radius: var(--r-md);
  background: var(--card); color: var(--foreground); max-width: 100%;
}
.sk-select:focus-visible { outline: 2px solid var(--ring); outline-offset: 1px; }

/* ------------------------------------------------------------ table ----- */

.sk-tbl .sk-sub { display: block; font-size: 11px; color: var(--muted-foreground); }
.sk-tbl td.wrap, .sk-tbl th.wrap { white-space: normal; }
/* An API path, a response code or a transaction id carries no space to break
   at. Left alone, one of them widens the table past the viewport and the
   whole page scrolls sideways. */
.sk-tbl td, .sk-tbl th { overflow-wrap: anywhere; }
.sk-tbl td.mono, .sk-tbl th.mono { word-break: break-all; }

.sk-yes { display: inline-flex; align-items: center; gap: 4px; color: var(--success); font-weight: 600; }
.sk-no  { color: var(--muted-foreground); }

.sk-rowacts { display: inline-flex; gap: 2px; flex-wrap: wrap; }
.sk-rowact {
  display: inline-flex; align-items: center; justify-content: center; gap: 5px;
  min-width: 28px; min-height: 28px; padding: 3px 6px;
  background: none; border: 1px solid transparent; border-radius: var(--r-sm);
  font: inherit; font-size: 11.5px; color: var(--muted-foreground); cursor: pointer;
}
.sk-rowact:hover { background: var(--secondary); color: var(--foreground); border-color: var(--border); }
.sk-rowact:focus-visible { outline: 2px solid var(--ring); outline-offset: 1px; }
.sk-rowact[data-tone="danger"]:hover { color: var(--destructive); }
/* The word is for a screen reader and for a card, not for a wide table row
   where the column header already says Actions. */
.sk-rowact-l { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ------------------------------------------------------------ types ----- */

.sk-types { display: grid; gap: 9px; grid-template-columns: 1fr; }
@media (min-width: 700px)  { .sk-types { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1280px) { .sk-types { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.sk-type {
  display: flex; align-items: flex-start; gap: 11px; text-align: left;
  padding: 12px 13px; min-height: 76px;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--shadow-panel); font: inherit; cursor: pointer;
}
.sk-type:hover { border-color: var(--primary); box-shadow: var(--shadow-raised); }
.sk-type:focus-visible { outline: 2px solid var(--ring); outline-offset: 2px; }
.sk-type-tag {
  flex: none; display: inline-flex; align-items: center; justify-content: center;
  min-width: 42px; height: 26px; padding: 0 7px; border-radius: var(--r-sm);
  background: var(--secondary); color: var(--secondary-foreground);
  font-size: 10.5px; font-weight: 700; letter-spacing: .03em;
}
.sk-type-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.sk-type-name { font-size: 13px; font-weight: 650; line-height: 1.3; overflow-wrap: anywhere; }
.sk-type-cat {
  align-self: flex-start; font-size: 10px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--muted-foreground);
}
.sk-type-desc { font-size: 11.5px; line-height: 1.45; color: var(--muted-foreground); }

/* ------------------------------------------------------------- tabs ----- */

.sk-tabs {
  display: flex; gap: 2px; overflow-x: auto; scrollbar-width: none;
  border-bottom: 1px solid var(--border); margin: 14px 0 0;
}
.sk-tabs::-webkit-scrollbar { display: none; }
.sk-tab {
  flex: none; padding: 9px 12px; min-height: 40px;
  background: none; border: 0; border-bottom: 2px solid transparent;
  font: inherit; font-size: 12.5px; font-weight: 600; cursor: pointer;
  color: var(--muted-foreground); white-space: nowrap;
}
.sk-tab:hover { color: var(--foreground); background: var(--secondary); }
.sk-tab:focus-visible { outline: 2px solid var(--ring); outline-offset: -2px; }
.sk-tab[aria-selected="true"] {
  color: var(--primary); border-bottom-color: var(--primary); font-weight: 700;
}
.sk-tabpanel { padding-top: 14px; }
.sk-tabpanel:focus-visible { outline: 2px solid var(--ring); outline-offset: 3px; border-radius: var(--r-md); }

/* --------------------------------------------------------- switches ----- */

.sk-switches { display: grid; gap: 2px; grid-template-columns: 1fr; }
@media (min-width: 900px)  { .sk-switches { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1500px) { .sk-switches { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.sk-sw {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 9px 10px; border-radius: var(--r-md); cursor: pointer; min-height: 44px;
}
.sk-sw:hover { background: var(--secondary); }
.sk-sw-in { position: absolute; opacity: 0; width: 0; height: 0; }
.sk-sw-track {
  flex: none; position: relative; width: 34px; height: 20px; margin-top: 1px;
  border-radius: 999px; background: var(--input); transition: background .14s ease;
}
.sk-sw-dot {
  position: absolute; top: 2px; left: 2px; width: 16px; height: 16px;
  border-radius: 50%; background: var(--card); transition: transform .14s ease;
  box-shadow: 0 1px 2px rgb(0 0 0 / .25);
}
.sk-sw-in:checked + .sk-sw-track { background: var(--primary); }
.sk-sw-in:checked + .sk-sw-track .sk-sw-dot { transform: translateX(14px); }
.sk-sw-in:focus-visible + .sk-sw-track { outline: 2px solid var(--ring); outline-offset: 2px; }
.sk-sw-in:disabled + .sk-sw-track { opacity: .5; }
.sk-sw-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.sk-sw-name { font-size: 12.5px; font-weight: 620; line-height: 1.35; }
.sk-sw-desc { font-size: 11.5px; line-height: 1.45; color: var(--muted-foreground); }
@media (prefers-reduced-motion: reduce) {
  .sk-sw-track, .sk-sw-dot { transition: none; }
}

/* ----------------------------------------------------------- fields ----- */

.sk-fields { display: grid; gap: 11px; grid-template-columns: 1fr; }
@media (min-width: 760px)  { .sk-fields { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1400px) { .sk-fields { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.sk-fld { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.sk-fld.is-wide { grid-column: 1 / -1; }
.sk-fld-l { font-size: 12px; font-weight: 620; color: var(--foreground); }
.sk-req { color: var(--destructive); }
.sk-input {
  font: inherit; font-size: 12.5px; min-height: 36px; padding: 7px 10px;
  border: 1px solid var(--input); border-radius: var(--r-md);
  background: var(--card); color: var(--foreground); width: 100%;
}
.sk-input:focus-visible, .sk-ta:focus-visible { outline: 2px solid var(--ring); outline-offset: 1px; }
.sk-input[readonly] { background: var(--secondary); color: var(--muted-foreground); }
.sk-ta { resize: vertical; line-height: 1.5; }
.sk-fld-hint { font-size: 11px; line-height: 1.45; color: var(--muted-foreground); }

.sk-chips { display: flex; flex-wrap: wrap; gap: 5px; min-height: 36px; align-items: center; }
.sk-chip {
  display: inline-flex; align-items: center; min-height: 24px; padding: 2px 9px;
  border-radius: 999px; background: var(--secondary); color: var(--secondary-foreground);
  border: 1px solid var(--border); font-size: 11.5px; font-weight: 600;
}
.sk-radios { display: flex; flex-wrap: wrap; gap: 4px 16px; }
.sk-radio { display: inline-flex; align-items: center; gap: 7px; min-height: 32px; font-size: 12.5px; cursor: pointer; }
.sk-radio input:focus-visible { outline: 2px solid var(--ring); outline-offset: 2px; }

.sk-filetypes { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 8px; padding: 0; list-style: none; }
.sk-filetype {
  display: inline-flex; align-items: center; min-height: 28px; padding: 3px 11px;
  border-radius: var(--r-sm); background: var(--secondary); border: 1px solid var(--border);
  font-family: var(--mono, ui-monospace, monospace); font-size: 12px;
}
.sk-typelist { display: flex; flex-wrap: wrap; gap: 5px; margin: 0; padding: 0; list-style: none; }
.sk-typechip {
  display: inline-flex; align-items: center; min-height: 26px; padding: 2px 9px;
  border-radius: var(--r-sm); background: var(--secondary); border: 1px solid var(--border);
  font-size: 11.5px; color: var(--secondary-foreground);
}

/* ---------------------------------------------------------- section ----- */

.sk-section { margin-top: 18px; }
.sk-section:first-of-type { margin-top: 0; }
.sk-section-h {
  margin: 0 0 4px; font-size: 14px; font-weight: 700; letter-spacing: -.01em;
}
.sk-section-d { margin: 0 0 10px; font-size: 12px; line-height: 1.5; color: var(--muted-foreground); max-width: 74ch; }

/* ---------------------------------------------------------- savebar ----- */

.sk-savebar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 10px 14px; margin-top: 20px; padding: 12px 14px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  position: sticky; bottom: 8px;
}
.sk-savebar-t { margin: 0; font-size: 11.5px; color: var(--muted-foreground); flex: 1 1 260px; }
.sk-savebar-acts { display: flex; gap: 8px; flex: none; }
@media (max-width: 560px) {
  .sk-savebar { position: static; }
  .sk-savebar-acts { width: 100%; }
  .sk-savebar-acts .btn { flex: 1 1 auto; justify-content: center; }
}

/* ------------------------------------------------------------- flow ----- */

.sk-stages { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.sk-stage {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 12px 13px; box-shadow: var(--shadow-panel);
}
.sk-stage-head { display: flex; align-items: flex-start; gap: 11px; flex-wrap: wrap; }
.sk-stage-n {
  flex: none; display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--primary); color: var(--primary-foreground, #fff);
  font-size: 12px; font-weight: 700;
}
.sk-stage-t { flex: 1 1 200px; min-width: 0; }
.sk-stage-name { margin: 0; font-size: 13.5px; font-weight: 650; }
.sk-stage-meta { margin: 2px 0 0; font-size: 11.5px; color: var(--muted-foreground); }
.sk-stage-part { margin-top: 11px; }
.sk-stage-label {
  margin: 0 0 5px; font-size: 10.5px; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: var(--muted-foreground);
}
.sk-rules, .sk-acts { display: flex; flex-wrap: wrap; gap: 5px; margin: 0; padding: 0; list-style: none; }
.sk-rule {
  display: inline-flex; align-items: center; gap: 5px; min-height: 28px; padding: 3px 10px;
  border-radius: var(--r-sm); background: var(--warning-soft); color: var(--warning);
  font-size: 11.5px; font-weight: 600;
}
.sk-actchip {
  display: inline-flex; align-items: center; min-height: 28px; padding: 3px 11px;
  border-radius: 999px; background: var(--secondary); color: var(--secondary-foreground);
  border: 1px solid var(--border); font-size: 11.5px; font-weight: 600;
}

/* ----------------------------------------------------------- access ----- */

.sk-access { display: grid; gap: 12px; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 900px) { .sk-access { grid-template-columns: minmax(180px, 230px) minmax(0, 1fr); } }

.sk-roles { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 10px; }
.sk-roles-h { margin: 0 0 7px; font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--muted-foreground); }
.sk-rolelist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.sk-role {
  width: 100%; text-align: left; min-height: 36px; padding: 7px 10px;
  background: none; border: 0; border-radius: var(--r-md);
  font: inherit; font-size: 12.5px; cursor: pointer; color: var(--foreground);
}
.sk-role:hover { background: var(--secondary); }
.sk-role:focus-visible { outline: 2px solid var(--ring); outline-offset: -2px; }
.sk-role[aria-current="true"] {
  background: var(--secondary); font-weight: 700; color: var(--primary);
  box-shadow: inset 3px 0 0 var(--primary);
}
.sk-perms { min-width: 0; }
.sk-perms-h { margin: 0 0 10px; font-size: 15px; font-weight: 700; }
.sk-permgroup { margin-bottom: 16px; }
.sk-permgroup-h {
  display: flex; align-items: center; gap: 6px; margin: 0 0 6px;
  font-size: 12px; font-weight: 700; color: var(--muted-foreground);
}
/* The label is the target, not the box inside it: 32px of clickable area
   around an 18px mark. The box is drawn larger than a browser default too,
   because a 13px checkbox is hard to hit and hard to see. */
.sk-cb { display: inline-flex; align-items: center; justify-content: center; min-width: 32px; min-height: 32px; cursor: pointer; }
.sk-cb input { width: 18px; height: 18px; accent-color: var(--primary); cursor: pointer; }
.sk-cb input:focus-visible { outline: 2px solid var(--ring); outline-offset: 2px; }
.sk-radio input { width: 18px; height: 18px; accent-color: var(--primary); cursor: pointer; }

/* ------------------------------------------------------ connection ----- */

.sk-providers { display: grid; gap: 9px; grid-template-columns: 1fr; margin-bottom: 16px; }
@media (min-width: 760px)  { .sk-providers { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1280px) { .sk-providers { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.sk-provider {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 12px 13px; display: flex; flex-direction: column; gap: 7px;
}
.sk-provider[data-state="on"] { border-color: var(--success); }
.sk-provider-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
.sk-provider-name { font-size: 13.5px; font-weight: 650; }
.sk-provider-d { margin: 0; font-size: 11.5px; line-height: 1.45; color: var(--muted-foreground); }
.sk-provider-acts { display: flex; gap: 7px; flex-wrap: wrap; margin-top: auto; }
@media (max-width: 420px) { .sk-provider-acts .btn { flex: 1 1 auto; justify-content: center; } }

.sk-secret {
  display: flex; align-items: flex-start; gap: 7px; margin: 14px 0 0;
  padding: 9px 11px; border-radius: var(--r-md);
  background: var(--secondary); color: var(--muted-foreground);
  font-size: 11.5px; line-height: 1.5;
}

/* ----------------------------------------------------------- drawer ----- */

.sk-scrim {
  position: fixed; inset: 0; z-index: 70;
  background: oklch(0.2 0.03 255 / .45);
}
.sk-drawer {
  position: fixed; z-index: 71; top: 0; right: 0; bottom: 0;
  width: min(480px, 100%); display: flex; flex-direction: column;
  background: var(--card); border-left: 1px solid var(--border);
  box-shadow: -8px 0 28px oklch(0.2 0.03 255 / .18);
}
@media (max-width: 640px) {
  .sk-drawer { left: 0; top: auto; height: min(88vh, 100%); border-left: 0; border-top: 1px solid var(--border);
               border-radius: var(--r-lg) var(--r-lg) 0 0; box-shadow: 0 -8px 28px oklch(0.2 0.03 255 / .22); }
}
.sk-drawer-head {
  flex: none; display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 14px 16px 10px;
}
.sk-drawer-t { margin: 0; font-size: 16px; font-weight: 700; letter-spacing: -.02em; }
.sk-drawer-x {
  flex: none; display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: var(--r-md);
  background: none; border: 1px solid var(--border); color: var(--muted-foreground); cursor: pointer;
}
.sk-drawer-x:hover { background: var(--secondary); color: var(--foreground); }
.sk-drawer-x:focus-visible { outline: 2px solid var(--ring); outline-offset: 2px; }
.sk-drawer-d { margin: 0 16px 10px; font-size: 12px; color: var(--muted-foreground); line-height: 1.5; }
.sk-drawer-body { flex: 1; min-height: 0; overflow-y: auto; padding: 4px 16px 16px; }
.sk-drawer-foot {
  flex: none; display: flex; gap: 8px; justify-content: flex-end;
  padding: 12px 16px; border-top: 1px solid var(--border); background: var(--surface);
}
@media (max-width: 420px) { .sk-drawer-foot .btn { flex: 1 1 auto; justify-content: center; } }

/* The drawer holds a single column, whatever the screen behind it does. */
.sk-drawer .sk-fields { grid-template-columns: 1fr; }
.sk-drawer .sk-fld.is-wide { grid-column: auto; }

/* -------------------------------------------------------- change log ---- */

.sk-clog { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.sk-clog-row {
  display: grid; gap: 2px 12px; grid-template-columns: 1fr;
  padding: 9px 10px; border-radius: var(--r-md);
}
.sk-clog-row:nth-child(odd) { background: var(--surface); }
@media (min-width: 420px) { .sk-clog-row { grid-template-columns: auto minmax(0, 1fr); } }
.sk-clog-when { font-size: 11px; color: var(--muted-foreground); white-space: nowrap; }
.sk-clog-what { font-size: 12.5px; line-height: 1.45; }
.sk-clog-who { display: block; font-size: 11.5px; color: var(--muted-foreground); }

.sk-detail { margin-bottom: 16px; }
.sk-detail-h { display: flex; align-items: center; gap: 6px; margin: 0 0 7px; font-size: 12.5px; font-weight: 700; }
.sk-detail-list { margin: 0; display: flex; flex-direction: column; gap: 5px; }
.sk-detail-row { display: grid; gap: 1px 12px; grid-template-columns: 1fr; }
@media (min-width: 420px) { .sk-detail-row { grid-template-columns: 130px minmax(0, 1fr); } }
.sk-detail-row dt { font-size: 11.5px; color: var(--muted-foreground); }
.sk-detail-row dd { margin: 0; font-size: 12.5px; overflow-wrap: anywhere; }
.sk-was, .sk-now {
  display: inline-block; padding: 1px 7px; border-radius: var(--r-sm);
  font-family: var(--mono, ui-monospace, monospace); font-size: 11.5px;
}
.sk-was { background: var(--destructive-soft); color: var(--destructive); }
.sk-now { background: var(--success-soft); color: var(--success); }

/* ------------------------------------------------------------ toast ----- */

.sk-toast {
  position: fixed; z-index: 80; left: 50%; bottom: 20px; transform: translateX(-50%);
  max-width: min(560px, calc(100vw - 32px));
  padding: 11px 15px; border-radius: var(--r-lg);
  background: var(--foreground); color: var(--background, var(--card));
  font-size: 12.5px; line-height: 1.5; box-shadow: var(--shadow-raised);
}

/* --------------------------------------------------- narrow screens ----- */

@media (max-width: 420px) {
  .sk-title { font-size: 19px; }
  .sk-stage-head { gap: 8px; }
  .sk-tab { padding-inline: 10px; }
}

/* On a card-shaped row the icon-only action is ambiguous, so the word comes
   back. This is the one place the label is not for screen readers only. */
@media (max-width: 860px) {
  .sk-rowact-l {
    position: static; width: auto; height: auto; overflow: visible;
    clip: auto; white-space: nowrap;
  }
  .sk-rowact { border-color: var(--border); }
  .sk-rowacts { gap: 6px; }
}

@media print {
  .sk-head-acts, .sk-tb-acts, .sk-savebar, .sk-rowacts { display: none; }
}
