/* ════ Export buttons — EC module responsive ════ */
@media (max-width: 768px) {
  #export-dxf, #export-docx, #btn-settings {
    padding: 0.2rem 0.4rem !important; font-size: 0.7rem !important;
  }
}
@media (max-width: 430px) {
  #export-dxf, #export-docx { display: none !important; }
}

/* ════ Result strip cells ════ */
.result-cell {
  padding: 0.35rem 0.4rem; text-align: center; cursor: default;
  border-right: 1px solid var(--border); user-select: none; transition: background 0.15s;
}
.result-cell:last-child { border-right: none; }
.result-cell .rc-label {
  font-size: 0.67rem; color: var(--text-dim); white-space: nowrap;
  font-family: var(--font-mono);
}
.result-cell .rc-val {
  font-size: 0.88rem; font-weight: 700; font-family: var(--font-mono);
}
.rc-ok   .rc-val { color: #43a047; }
.rc-err  .rc-val { color: #e53935; }
.rc-warn .rc-val { color: #ffa000; }
.rc-na   .rc-val { color: var(--text-dim); }

/* ════ Result table ════ */
.result-table-wrap { padding: 0.4rem 0.6rem; }
.result-table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.result-table th {
  background: var(--navy-800); color: var(--text-dim);
  padding: 0.25rem 0.5rem; text-align: left; font-weight: 600; font-size: 0.77rem;
}
.result-table td { padding: 0.25rem 0.5rem; border-bottom: 1px solid var(--border); }
.result-table td.td-val { font-family: var(--font-mono); }

/* ════ Profile info box ════ */
.profile-info-box {
  background: var(--navy-700, #0d2137);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 0.4rem 0.55rem; margin-top: 0.35rem;
  font-family: var(--font-mono); font-size: 0.76rem;
  display: grid; grid-template-columns: auto 1fr auto 1fr;
  column-gap: 0.3rem; row-gap: 0.1rem;
}
.profile-info-box .pi-label { color: var(--text-dim); white-space: nowrap; }
.profile-info-box .pi-val   { color: var(--text); text-align: right; }
.profile-info-box .pi-label:nth-child(4n+3) {
  border-left: 1px solid var(--border); padding-left: 0.4rem; margin-left: 0.1rem;
}

/* ════ Section label ════ */
.section-label {
  font-size: 0.7rem; color: var(--text-dim); font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.75rem;
}

/* ════ Utilization bars ════ */
.util-bars-wrap { padding: 0.5rem 0.6rem; height: 100%; box-sizing: border-box; }
