 

#panel-dashboard > .dash-sec,
#panel-dashboard > .dash-lang-cards-row {
  max-width: 1484px; margin-left: auto; margin-right: auto; width: 100%;
}
#panel-dashboard > .dash-sec.wide { max-width: none; }

 
.dash-lang-cards-row {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; flex: 0 0 auto;
}
@media (max-width: 1100px) { .dash-lang-cards-row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .dash-lang-cards-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px)  { .dash-lang-cards-row { grid-template-columns: 1fr; } }
.dash-lc {
  background: var(--card); border: 1px solid var(--border); border-top: 4px solid;
  border-radius: 16px; padding: 10px 12px; min-width: 0;
}
.dash-lc-nm {
  font-weight: 700; font-size: 0.85rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.dash-lc-big { font-size: 1.2rem; font-weight: 800; margin: 4px 0 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dash-lc-big small { font-weight: 500; color: var(--muted); font-size: 0.66rem; margin-left: 4px; }
.dash-lc-spark { display: flex; align-items: flex-end; gap: 2px; height: 26px; margin: 6px 0 5px; }
.dash-lc-spark i { flex: 1; border-radius: 1px; background: currentColor; opacity: 0.55; min-height: 1px; display: block; }
.dash-lc-goal { height: 5px; border-radius: 3px; background: var(--border); overflow: hidden; }
.dash-lc-goal i { display: block; height: 100%; }
.dash-lc-sub { font-size: 0.68rem; color: var(--muted); margin-top: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dash-lc-tot {
  font-size: 0.66rem; color: var(--muted); margin-top: 6px; border-top: 1px dashed var(--border);
  padding-top: 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

 
.dash-sec { background: var(--card); border: 1px solid var(--border); border-radius: 14px; min-width: 0; }
.dash-sec-hd {
  display: flex; align-items: center; gap: 10px; padding: 11px 14px; cursor: pointer; user-select: none;
}
.dash-sec-title { font-weight: 700; font-size: 0.95rem; white-space: nowrap; flex: 0 0 auto; }
.dash-sec-sum {
  color: var(--muted); font-size: 0.76rem; font-weight: 500; flex: 1 1 auto; min-width: 0;
  text-align: right; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.dash-sec-arrow { color: var(--muted); font-size: 0.8rem; flex: 0 0 auto; transition: transform 0.15s; display: inline-block; }
.dash-sec.dash-sec-open .dash-sec-arrow { transform: rotate(90deg); }
.dash-sec-bd { display: flex; flex-direction: column; gap: 14px; min-width: 0; padding: 0 14px 14px; }
.dash-sec-bd[hidden] { display: none; }

@media (max-width: 600px) {
   
  .dash-sec-hd { flex-wrap: wrap; }
  .dash-sec-sum { flex-basis: 100%; text-align: left; order: 3; }
}
