/*
 * Dashboard ops — inspiración tipo consola / o11 (oscuro, verde terminal, monospace).
 * Pico.css permanece como base para formularios y tipografía responsive.
 */

.o11-theme {
  --o11-bg: #050608;
  --o11-panel: #0d0f12;
  --o11-border: #1e2933;
  --o11-green: #00dc5a;
  --o11-green-dim: rgba(0, 220, 90, 0.55);
  --o11-text: #c8cdd3;
  --pico-background-color: var(--o11-bg);
  --pico-card-background-color: var(--o11-panel);
  --pico-color: var(--o11-text);
}

body.o11-theme {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  background: var(--o11-bg);
}

.skip-link {
  position: absolute;
  left: -999px;
}
.skip-link:focus {
  left: 8px;
  top: 8px;
  background: var(--o11-green);
  color: #000;
  padding: 6px 10px;
  z-index: 999;
}

/* Layout tipo ops: sidebar fija */
.o11-layout {
  display: grid;
  grid-template-columns: 216px minmax(0, 1fr);
  min-height: 100vh;
}
.o11-layout--plain {
  grid-template-columns: 1fr;
}

.o11-aside {
  border-right: 1px solid var(--o11-border);
  background: linear-gradient(180deg, #060809 0%, #080b0e 100%);
  padding: 1rem 0.85rem;
  display: flex;
  flex-direction: column;
}

.o11-brand-line {
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 3px;
  color: var(--o11-green);
  text-shadow: 0 0 12px var(--o11-green-dim);
}

.o11-green { color: var(--o11-green); }

.o11-brand-sub {
  font-size: 0.7rem;
  letter-spacing: 2px;
  opacity: 0.65;
  margin-top: 4px;
  margin-bottom: 1.25rem;
}

.o11-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.o11-nav a {
  display: block;
  padding: 0.45rem 0.65rem;
  border-left: 2px solid transparent;
  color: var(--o11-text);
  text-decoration: none;
  font-size: 0.88rem;
}

.o11-nav a:hover {
  border-left-color: var(--o11-green-dim);
  background: rgba(0, 220, 90, 0.06);
}

.o11-nav a.active {
  border-left-color: var(--o11-green);
  background: rgba(0, 220, 90, 0.08);
  color: #fff;
}

.o11-aside-foot {
  margin-top: auto;
  padding-top: 1rem;
}

.o11-btn-out {
  width: 100%;
  font-size: 0.8rem !important;
  padding: 0.35rem !important;
}

.o11-aside-hint {
  opacity: 0.45;
  margin-top: 10px;
  font-size: 0.65rem;
}

.o11-main {
  background: var(--o11-bg);
}

.o11-topbar {
  border-bottom: 1px solid var(--o11-border);
  padding: 0.55rem 1.25rem;
  background: rgba(0, 0, 0, 0.35);
}

.o11-container {
  padding: 1rem 1.25rem 2.5rem;
  max-width: 1200px;
}
.o11-container--narrow {
  max-width: 480px;
  margin: 0 auto;
}

.o11-footer {
  padding: 1rem 1.25rem 1.75rem;
  border-top: 1px solid var(--o11-border);
}

.flash {
  padding: 0.7rem 1rem;
  border-radius: 2px;
  margin: 0 0 1rem;
  border: 1px solid;
}
.flash-info { background: rgba(0, 136, 255, 0.06); border-color: #0369a1; }
.flash-ok { background: rgba(0, 220, 90, 0.08); border-color: var(--o11-green); }
.flash-warn { background: rgba(202,138,4,.09); border-color: #ca8a04; }
.flash-error { background: rgba(220,38,38,.08); border-color: #dc2626; }

.badge {
  display: inline-block;
  padding: 1px 8px;
  border-radius: 2px;
  font-size: 0.75em;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid;
}
.badge-green  { color: var(--o11-green); border-color: var(--o11-green-dim); }
.badge-orange { color: #fbbf24; border-color: rgba(251,191,36,.5); }
.badge-red    { color: #f87171; border-color: rgba(248,113,113,.55); }
.badge-gray   { color: #94a3b8; border-color: #475569; }
.badge-cyan   { color: #22d3ee; border-color: rgba(34,211,238,.55); }

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 0.65rem;
  margin: 1rem 0 1.5rem;
}

.kpi {
  border: 1px solid var(--o11-border);
  background: var(--o11-panel);
  padding: 0.65rem 0.85rem;
  border-radius: 2px;
}
.kpi .label { font-size: .75rem; opacity: 0.6; letter-spacing: 0.03em; }
.kpi .value { font-size: 1.4em; font-weight: 800; margin-top: 2px; }
.kpi .sub   { font-size: .72rem; opacity: 0.55; margin-top: 4px; }

.o11-banner {
  border-left: 3px solid var(--o11-green);
  padding: 0.65rem 0.9rem;
  background: rgba(0, 220, 90, 0.05);
  font-size: 0.82rem;
  margin-bottom: 1rem;
  max-width: 900px;
}

.tablebar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.32rem;
  align-items: center;
  margin: 0.35rem 0 0.55rem;
}
.tablebar form {
  margin: 0;
}
.tablebar input,
.tablebar select {
  margin: 0;
  min-width: 104px;
  height: 1.85rem;
  font-size: 0.76rem;
}
.tablebar input[type="text"] {
  min-width: 180px;
}
.tablebar input[type="number"] {
  min-width: 64px;
  max-width: 80px;
}

/* Barra de acciones (inicio, backup categorías, etc.) */
.sheet-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin: 0.35rem 0 0.55rem;
}
.sheet-toolbar form {
  margin: 0;
}

.channels-page-head {
  margin-bottom: 0.5rem;
}
.channels-page-title {
  font-size: 0.95rem;
  margin: 0 0 0.25rem;
  font-weight: 700;
  color: var(--o11-text);
}
.channels-page-title-accent {
  color: var(--o11-green);
}
.channels-page-desc {
  font-size: 0.78rem;
  margin: 0;
  opacity: 0.78;
  line-height: 1.35;
}

.channels-panel-title {
  font-size: 0.82rem;
  margin: 0 0 4px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: var(--o11-green);
}
.channels-panel-title--warn {
  color: #fbbf24;
}

/* Panel migración/backup (categorías) */
.layout-backup-panel {
  margin-bottom: 0.5rem;
  background: var(--o11-panel);
  border: 1px solid var(--o11-border);
  padding: 0.55rem 0.65rem;
  border-radius: 2px;
}
.layout-backup-title {
  font-size: 0.82rem;
  margin: 0 0 0.35rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  color: #38bdf8;
  border-bottom: 1px solid var(--o11-border);
  padding-bottom: 0.28rem;
}
.layout-backup-panel .layout-backup-hint {
  font-size: 0.76rem;
  margin: 0 0 0.55rem;
  opacity: 0.82;
  line-height: 1.4;
  max-width: 52rem;
}
.layout-backup-import-form {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
}
/*
 * Controles export / archivo / import: estilo autocontenido (Pico gana por especificidad sobre .mini-btn).
 * Archivo: label envolvente + input opacity 0 encima (visible siempre; sin widget nativo gigante).
 */
body.o11-theme .layout-backup-toolbar .backup-io-btn {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0.16rem 0.42rem !important;
  min-height: 1.55rem !important;
  max-height: 1.55rem !important;
  height: 1.55rem !important;
  box-sizing: border-box !important;
  font-family: inherit !important;
  font-size: 0.68rem !important;
  line-height: 1 !important;
  font-weight: 500 !important;
  text-transform: lowercase !important;
  letter-spacing: normal !important;
  border: 1px solid var(--o11-border) !important;
  border-radius: 2px !important;
  background: rgba(255, 255, 255, 0.07) !important;
  color: var(--o11-text) !important;
  cursor: pointer;
  vertical-align: middle;
  white-space: nowrap;
}
body.o11-theme .layout-backup-toolbar .backup-io-btn:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
}
body.o11-theme .layout-backup-toolbar .backup-io-btn:focus-visible {
  outline: 2px solid var(--o11-green);
  outline-offset: 2px;
}
body.o11-theme .layout-backup-toolbar .backup-io-btn--success {
  border-color: var(--o11-green-dim) !important;
  color: var(--o11-green) !important;
  background: rgba(0, 220, 90, 0.1) !important;
}
body.o11-theme .layout-backup-toolbar .backup-io-btn--success:hover {
  background: rgba(0, 220, 90, 0.16) !important;
}
body.o11-theme .layout-backup-toolbar label.backup-io-btn--file {
  position: relative;
  overflow: hidden;
  user-select: none;
}
body.o11-theme .layout-backup-toolbar label.backup-io-btn--file:focus-within {
  outline: 2px solid var(--o11-green);
  outline-offset: 2px;
}
body.o11-theme .layout-backup-toolbar label.backup-io-btn--file > input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  font-size: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  min-height: 0 !important;
  box-shadow: none !important;
}
body.o11-theme .layout-backup-toolbar label.backup-io-btn--file > .backup-io-btn__text {
  pointer-events: none;
}
.backup-io-file-name {
  font-size: 0.68rem;
  opacity: 0.65;
  max-width: 11rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.layout-backup-check-row {
  flex-basis: 100%;
  margin: 0.35rem 0 0;
  padding-top: 0.45rem;
  border-top: 1px solid var(--o11-border);
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.74rem;
  line-height: 1.35;
  opacity: 0.9;
  max-width: 48rem;
}
.layout-backup-check-row input[type="checkbox"] {
  margin-top: 0.15rem;
  flex-shrink: 0;
}

table.compact { font-size: 0.89em; }
table.compact td, table.compact th {
  padding: 0.4rem 0.55rem;
  vertical-align: top;
}

table thead th {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.75;
  border-bottom: 1px solid var(--o11-green-dim);
}

table tbody tr:hover { background: rgba(0, 220, 90, 0.04); }

.row-actions form { display: inline; margin-right: 0.3rem; }
.row-actions button { padding: 2px 9px; font-size: .8em; margin: 0; }

.provider-stack {
  display: grid;
  gap: 0.5rem;
  max-width: 860px;
}

.provider-card {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.65rem;
  border: 1px solid var(--o11-border);
  background: var(--o11-panel);
  padding: 0.45rem 0.65rem;
  border-radius: 2px;
}
.provider-card input[type="checkbox"],
.channel-row input[type="checkbox"] {
  margin: 0;
}
.provider-main {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  color: var(--o11-text);
  text-decoration: none;
  min-width: 0;
}
.provider-main:hover strong { color: var(--o11-green); }
.provider-main small { opacity: 0.65; }
.provider-identities { font-size: 0.78rem; opacity: 0.6; }
.dot {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  display: inline-block;
  flex: 0 0 auto;
}
.dot-ok { background: var(--o11-green); box-shadow: 0 0 10px var(--o11-green-dim); }
.dot-degraded { background: #fbbf24; }
.dot-down { background: #f87171; }
.dot-unknown { background: #94a3b8; }

.mini-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  border: 1px solid var(--o11-border);
  background: rgba(255,255,255,0.02);
  padding: 0.55rem 0.7rem;
  margin: 0.9rem 0;
  max-width: 860px;
}
.inline-form {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
}
.inline-form select,
.inline-form button {
  margin: 0;
}
.dense { gap: 0.4rem; }

.channel-list {
  display: grid;
  gap: 0.25rem;
  max-width: 980px;
}
.channel-row {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  border-bottom: 1px solid rgba(127,127,127,.12);
  padding: 0.32rem 0.2rem;
  font-size: 0.9rem;
}
.channel-row.readonly {
  grid-template-columns: minmax(0, 1fr) minmax(160px, 45%);
}

.provider-tabs {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.provider-tabs a {
  border: 1px solid var(--o11-border);
  padding: 0.25rem 0.55rem;
  text-decoration: none;
  color: var(--o11-text);
}
.provider-tabs a.active {
  color: var(--o11-green);
  border-color: var(--o11-green-dim);
}

.muted { opacity: 0.65; }
.mono { font-family: inherit; }
.small { font-size: .85rem; }

.log-line {
  font-family: inherit;
  font-size: .8em;
  padding: 2px 6px;
  border-bottom: 1px solid rgba(127,127,127,.08);
  white-space: pre-wrap;
  word-break: break-word;
}
.log-line.lvl-warning { color: #facc15; }
.log-line.lvl-error   { color: #f87171; }

h1, h2, h3, hgroup h2 {
  font-weight: 800;
  letter-spacing: -0.02em;
}

a.contrast:hover { color: var(--o11-green); }

/* Fase 6.1: modo ultra-compacto. Gana densidad y lectura rápida. */
.o11-theme {
  --pico-font-size: 87.5%;
  --pico-line-height: 1.25;
  --pico-form-element-spacing-vertical: 0.22rem;
  --pico-form-element-spacing-horizontal: 0.45rem;
  --pico-spacing: 0.45rem;
}

body.o11-theme {
  font-size: 13px;
}

.o11-layout {
  grid-template-columns: 168px minmax(0, 1fr);
}

.o11-aside {
  padding: 0.65rem 0.55rem;
}

.o11-brand-line {
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-shadow: none;
}

.o11-brand-sub {
  font-size: 0.58rem;
  margin-bottom: 0.65rem;
}

.o11-nav a {
  font-size: 0.76rem;
  padding: 0.28rem 0.45rem;
}

.o11-topbar {
  padding: 0.32rem 0.75rem;
}

.o11-container {
  padding: 0.65rem 0.8rem 1.4rem;
  max-width: 980px;
}

.o11-footer {
  padding: 0.45rem 0.8rem;
}

.page-title {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  margin: 0 0 0.55rem;
  border-bottom: 1px solid var(--o11-border);
  padding-bottom: 0.32rem;
}
.page-title strong {
  color: var(--o11-green);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}
.page-title span {
  opacity: 0.58;
  font-size: 0.72rem;
}

h1, h2, h3, hgroup h2 {
  font-size: 0.95rem;
  margin: 0.45rem 0;
}

.provider-stack {
  gap: 0.28rem;
  max-width: 760px;
}

.provider-card {
  grid-template-columns: 24px minmax(0, 1fr) 54px;
  gap: 0.4rem;
  padding: 0.28rem 0.45rem;
  min-height: 30px;
}

.provider-main {
  gap: 0.38rem;
  font-size: 0.82rem;
  white-space: nowrap;
  overflow: hidden;
}
.provider-main span:not(.dot),
.provider-main small {
  overflow: hidden;
  text-overflow: ellipsis;
}
.provider-main small {
  font-size: 0.68rem;
}
.provider-identities {
  font-size: 0.68rem;
  text-align: right;
}
.dot {
  width: 0.5rem;
  height: 0.5rem;
}

.mini-panel {
  max-width: 760px;
  margin: 0.45rem 0;
  padding: 0.34rem 0.45rem;
  gap: 0.45rem;
  font-size: 0.78rem;
}

.ops-actions {
  margin-top: 0.7rem !important;
}

.mini-btn,
button.mini-btn,
.row-actions button {
  padding: 0.16rem 0.42rem !important;
  min-height: 1.55rem;
  font-size: 0.68rem !important;
  line-height: 1 !important;
  text-transform: lowercase;
}

.channel-list {
  gap: 0;
  max-width: 900px;
  border-top: 1px solid rgba(127,127,127,.12);
}
.channel-row {
  grid-template-columns: 22px minmax(180px, 1.2fr) minmax(160px, 1fr) 110px;
  gap: 0.36rem;
  min-height: 25px;
  padding: 0.16rem 0.2rem;
  font-size: 0.76rem;
}
.channel-row input[type="checkbox"],
.provider-card input[type="checkbox"] {
  transform: scale(0.82);
}
.channel-name,
.chain {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.chain {
  opacity: 0.78;
}
.channel-row small {
  font-size: 0.66rem;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.channel-row.readonly {
  grid-template-columns: minmax(0, 1fr) minmax(180px, 40%);
}

.provider-tabs {
  margin-bottom: 0.55rem;
}
.provider-tabs a {
  padding: 0.16rem 0.42rem;
  font-size: 0.72rem;
}

.section-title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.8;
}

table.compact {
  font-size: 0.74rem;
}
table.compact td,
table.compact th {
  padding: 0.24rem 0.36rem;
}

.badge {
  padding: 0 5px;
  font-size: 0.64em;
}

/* Fase 6.2: grilla tipo Excel, lectura operativa sin ruido. */
body.o11-theme {
  font-size: 12px;
}

.o11-layout {
  grid-template-columns: 150px minmax(0, 1fr);
}

.o11-container {
  max-width: 1060px;
  padding: 0.5rem 0.65rem 1.1rem;
}

.o11-topbar,
.o11-footer {
  padding: 0.25rem 0.65rem;
}

.sheet-title {
  height: 22px;
  line-height: 22px;
  margin: 0 0 0.35rem;
  padding: 0 0.4rem;
  border: 1px solid var(--o11-border);
  background: #0a0d10;
  color: var(--o11-green);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sheet-subtitle {
  height: 20px;
  line-height: 20px;
  margin: 0.45rem 0 0.2rem;
  color: #9fb3c8;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.excel-grid {
  width: 100%;
  max-width: 980px;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 12px;
  margin: 0 0 0.45rem;
  background: #080b0e;
}

.excel-grid th,
.excel-grid td {
  border: 1px solid #1b2733;
  padding: 2px 6px;
  height: 22px;
  line-height: 16px;
  vertical-align: middle;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.excel-grid th {
  background: #111820;
  color: #8fa6bb;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.excel-grid td {
  color: #d5dbe1;
}

.excel-grid tr.state-ok td,
.excel-grid tr.state-active td {
  background: rgba(0, 170, 85, 0.07);
}
.excel-grid tr.state-degraded td,
.excel-grid tr.state-skipped td {
  background: rgba(214, 158, 46, 0.09);
}
.excel-grid tr.state-down td,
.excel-grid tr.state-disabled td {
  background: rgba(220, 38, 38, 0.10);
}

.excel-grid a {
  color: #d5dbe1;
  text-decoration: none;
}
.excel-grid a:hover {
  color: var(--o11-green);
}

.provider-grid th:nth-child(1),
.provider-grid td:nth-child(1) { width: 42px; }
.provider-grid th:nth-child(2),
.provider-grid td:nth-child(2) { width: 120px; }
.provider-grid th:nth-child(3),
.provider-grid td:nth-child(3) { width: 115px; }
.provider-grid th:nth-child(4),
.provider-grid td:nth-child(4) { width: 76px; }
.provider-grid th:nth-child(5),
.provider-grid td:nth-child(5) { width: 92px; }
.provider-grid th:nth-child(7),
.provider-grid td:nth-child(7) { width: 52px; }

.channel-grid th:nth-child(1),
.channel-grid td:nth-child(1) { width: 42px; }
.channel-grid th:nth-child(2),
.channel-grid td:nth-child(2) { width: 260px; }
.channel-grid th:nth-child(4),
.channel-grid td:nth-child(4) { width: 160px; }

.center {
  text-align: center;
}

.excel-grid form {
  margin: 0;
}
.excel-grid input[type="checkbox"] {
  margin: 0;
  transform: scale(0.78);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
}

.sheet-toolbar {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  max-width: 980px;
  min-height: 24px;
  margin: 0.25rem 0 0.5rem;
  padding: 0.2rem 0.35rem;
  border: 1px solid var(--o11-border);
  background: #080b0e;
  font-size: 12px;
}

.sheet-toolbar select,
.tablebar select,
.tablebar input {
  height: 22px;
  min-height: 22px;
  padding: 1px 6px;
  font-size: 12px;
}

.mini-btn,
button.mini-btn,
.row-actions button {
  min-height: 20px !important;
  height: 20px !important;
  padding: 1px 7px !important;
  font-size: 11px !important;
}

.tablebar {
  max-width: 980px;
  padding: 0.25rem 0.35rem;
  border: 1px solid var(--o11-border);
  background: #080b0e;
}

.badge {
  border-radius: 1px;
  padding: 0 4px;
  font-size: 10px;
  line-height: 14px;
}

.muted {
  color: #8fa6bb;
  opacity: 1;
}

 . c a t e g o r y - a c c o r d i o n   { 
     m a r g i n - b o t t o m :   0 . 5 r e m ; 
     b o r d e r :   1 p x   s o l i d   v a r ( - - o 1 1 - b o r d e r ) ; 
     b a c k g r o u n d :   v a r ( - - o 1 1 - p a n e l ) ; 
 } 
 
 . c a t e g o r y - s u m m a r y   { 
     p a d d i n g :   0 . 4 r e m   0 . 6 r e m ; 
     c u r s o r :   p o i n t e r ; 
     u s e r - s e l e c t :   n o n e ; 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     g a p :   0 . 5 r e m ; 
     b a c k g r o u n d :   r g b a ( 0 ,   0 ,   0 ,   0 . 2 ) ; 
     b o r d e r - b o t t o m :   1 p x   s o l i d   t r a n s p a r e n t ; 
     t r a n s i t i o n :   b a c k g r o u n d   0 . 1 5 s ; 
 } 
 
 . c a t e g o r y - s u m m a r y : h o v e r   { 
     b a c k g r o u n d :   r g b a ( 0 ,   0 ,   0 ,   0 . 4 ) ; 
 } 
 
 d e t a i l s [ o p e n ]   >   . c a t e g o r y - s u m m a r y   { 
     b o r d e r - b o t t o m - c o l o r :   v a r ( - - o 1 1 - b o r d e r ) ; 
 } 
 
 . c a t e g o r y - a c c o r d i o n   . c h a n n e l - g r i d   { 
     b o r d e r :   n o n e ; 
 } 
 
 
 