:root {
  --bg: #dfe6f2;
  --panel: rgba(236, 241, 250, 0.82);
  --panel-solid: #edf3fb;
  --text: #1c2436;
  --muted: #5d6a7f;
  --line: rgba(61, 77, 112, 0.16);
  --blue: #4f63d8;
  --cyan: #27aeb8;
  --pink: #c35c8a;
  --violet: #745bc8;
  --green: #24a278;
  --warning: #e8a02c;
  --danger: #e54864;
  --success: #119c6a;
  --shadow: 0 24px 60px rgba(33, 41, 66, 0.16);
  --soft-shadow: 0 14px 34px rgba(33, 41, 66, 0.11);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 8%, rgba(79, 99, 216, 0.3), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(39, 174, 184, 0.24), transparent 30%),
    radial-gradient(circle at 72% 82%, rgba(195, 92, 138, 0.24), transparent 32%),
    radial-gradient(circle at 22% 78%, rgba(36, 162, 120, 0.17), transparent 25%),
    linear-gradient(135deg, #dde7f8 0%, #e9edf4 30%, #eee4d7 58%, #eadcea 78%, #dcecf1 100%);
  background-size: 180% 180%;
  animation: pageGradient 18s ease infinite;
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 15px;
}

@keyframes pageGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
.download {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  padding: 11px 16px;
  cursor: pointer;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 12px 24px rgba(95, 124, 255, 0.22);
}

.soft-button {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

button:hover,
.download:hover {
  transform: translateY(-1px);
  filter: saturate(1.05);
}

.hidden {
  display: none !important;
}

.login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.login-panel {
  width: min(430px, 100%);
  display: grid;
  gap: 18px;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.login-panel h1 {
  margin-bottom: 6px;
  font-size: 32px;
  letter-spacing: 0;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  padding: 11px 12px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(95, 124, 255, 0.65);
  box-shadow: 0 0 0 4px rgba(95, 124, 255, 0.12);
}

textarea {
  min-height: 86px;
  resize: vertical;
}

.error {
  color: var(--danger);
  margin: 0;
}

.success {
  color: var(--success);
  margin: 0;
}

.app-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 276px minmax(0, 1fr);
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(247, 249, 253, 0.84);
  box-shadow: 12px 0 38px rgba(33, 41, 66, 0.08);
  backdrop-filter: blur(18px);
}

.system-title {
  padding: 14px 12px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(88, 101, 216, 0.12), rgba(53, 185, 200, 0.1));
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.system-title strong,
.system-title span {
  display: block;
}

.system-title strong {
  font-size: 18px;
}

.system-title span,
.user-box span,
.user-box em,
.muted {
  color: var(--muted);
}

.side-nav {
  display: grid;
  gap: 8px;
}

.nav-parent,
.nav-child {
  width: 100%;
  justify-content: flex-start;
  color: var(--text);
  background: transparent;
  box-shadow: none;
  border: 1px solid transparent;
}

.nav-parent {
  font-weight: 800;
}

.nav-child {
  width: calc(100% - 18px);
  margin-left: 18px;
  min-height: 36px;
  padding: 8px 12px;
  color: var(--muted);
}

.nav-parent.active,
.nav-child.active {
  color: #3444d9;
  border-color: rgba(95, 124, 255, 0.22);
  background: linear-gradient(135deg, rgba(95, 124, 255, 0.13), rgba(255, 122, 168, 0.1));
}

.nav-parent.disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.user-box {
  margin-top: auto;
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.user-box em {
  font-style: normal;
}

.ghost {
  color: var(--blue);
  background: rgba(95, 124, 255, 0.1);
  box-shadow: none;
}

.content {
  min-width: 0;
  padding: 22px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(244, 247, 252, 0.78));
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(14px);
}

.top-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.eyebrow {
  margin-bottom: 8px;
  color: #5367ff;
  font-size: 13px;
  font-weight: 900;
}

.topbar h1 {
  margin-bottom: 8px;
  font-size: 30px;
}

.topbar p {
  color: var(--muted);
}

.view {
  display: none;
}

.view.active {
  display: block;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}

.section-head span {
  color: var(--muted);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(305px, 1fr));
  gap: 14px;
}

.project-card,
.score-panel,
.standard-panel,
.summary-card,
.viz-card,
.detail-card,
.account-form,
.account-list,
.report-table-wrap,
.ranking-hero,
.radar-panel,
.dimension-panel,
.top-dimension-panel,
.student-score-panel {
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 48px rgba(31, 38, 72, 0.11);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
}

.project-card {
  min-height: 388px;
  padding: 20px;
  overflow: hidden;
}

.project-card:nth-child(1) {
  background:
    radial-gradient(circle at 90% 8%, rgba(36, 162, 120, 0.14), transparent 28%),
    linear-gradient(160deg, rgba(248, 251, 255, 0.86), rgba(220, 240, 235, 0.82));
}

.project-card:nth-child(2) {
  background:
    radial-gradient(circle at 90% 8%, rgba(79, 99, 216, 0.14), transparent 28%),
    linear-gradient(160deg, rgba(248, 251, 255, 0.86), rgba(226, 229, 245, 0.82));
}

.project-card:nth-child(3) {
  background:
    radial-gradient(circle at 90% 8%, rgba(195, 92, 138, 0.14), transparent 28%),
    linear-gradient(160deg, rgba(248, 251, 255, 0.86), rgba(242, 224, 234, 0.82));
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(41, 56, 95, 0.16);
}

.project-edit-form {
  display: grid;
  gap: 12px;
}

.project-edit-form textarea {
  min-height: 110px;
}

.cover-edit {
  gap: 10px;
}

.cover-edit img {
  width: 100%;
  height: 138px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.member-edit-list {
  display: grid;
  gap: 10px;
}

.member-edit-list > strong {
  color: var(--text);
}

.member-edit-row {
  display: grid;
  grid-template-columns: 86px 92px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
}

.member-edit-row span {
  color: var(--text);
  font-weight: 800;
}

.member-edit-row input {
  padding: 9px 10px;
}

.card-edit-actions,
.card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.card-actions button {
  flex: 1;
}

.project-cover {
  width: 100%;
  height: 108px;
  margin-bottom: 16px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 32px;
  font-weight: 900;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.55), transparent 22%),
    linear-gradient(135deg, var(--blue), var(--cyan));
}

.project-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.project-card:nth-child(2) .project-cover {
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.52), transparent 22%),
    linear-gradient(135deg, var(--violet), var(--blue));
}

.project-card:nth-child(3) .project-cover {
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.52), transparent 22%),
    linear-gradient(135deg, var(--pink), var(--violet));
}

.project-card h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.project-card p {
  color: var(--muted);
  line-height: 1.7;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.tag {
  border: 1px solid rgba(95, 124, 255, 0.16);
  border-radius: 999px;
  padding: 5px 10px;
  color: #4456d8;
  background: rgba(95, 124, 255, 0.09);
  font-size: 12px;
  font-weight: 800;
}

.member-list {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.member {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.member strong {
  color: var(--text);
}

.project-card .card-actions {
  margin-top: 18px;
}

.project-card-kicker {
  margin-bottom: 8px;
  color: #5367ff;
  font-size: 12px;
  font-weight: 900;
}

.inline-edit {
  border-radius: 6px;
  outline: none;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.can-edit-projects .inline-edit {
  cursor: text;
}

.can-edit-projects .inline-edit:hover,
.can-edit-projects .inline-edit:focus {
  background: rgba(88, 101, 216, 0.08);
  box-shadow: 0 0 0 4px rgba(88, 101, 216, 0.08);
}

.inline-member em {
  color: var(--muted);
  font-style: normal;
}

.inline-member small {
  color: rgba(96, 117, 150, 0.55);
}

.danger-button {
  background: linear-gradient(135deg, #e54864, #c56c96);
  box-shadow: 0 12px 24px rgba(229, 72, 100, 0.18);
}

.detail-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
  margin-bottom: 16px;
  padding: 20px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(235, 240, 250, 0.84));
  box-shadow: var(--soft-shadow);
}

.detail-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.my-score-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 98px minmax(160px, 260px);
  align-items: center;
  gap: 16px;
  padding: 20px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 10%, rgba(53, 185, 200, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(238, 242, 255, 0.7));
  box-shadow: 0 18px 44px rgba(31, 38, 72, 0.12);
  backdrop-filter: blur(18px) saturate(165%);
}

.my-score-panel span {
  color: var(--muted);
  font-weight: 800;
}

.my-score-panel strong {
  font-size: 28px;
  color: var(--blue);
}

.my-score-panel p {
  margin: 8px 0 0;
  color: var(--muted);
}

.live-score-ring,
.score-ring {
  --score: 0;
  width: 86px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.92) 0 58%, transparent 59%),
    conic-gradient(from -90deg, var(--blue) calc(var(--score) * 1%), rgba(108, 119, 150, 0.16) 0);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7), 0 14px 30px rgba(88, 101, 216, 0.14);
}

.live-score-ring strong,
.score-ring strong {
  color: var(--text);
  font-size: 22px;
  line-height: 1;
}

.live-score-ring em,
.score-ring span {
  margin-top: 25px;
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  position: absolute;
}

.live-score-bar {
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(96, 117, 150, 0.16);
}

.live-score-bar i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--cyan), var(--violet));
  transition: width 0.25s ease;
}

.detail-header p {
  color: var(--muted);
  line-height: 1.7;
}

.standard-panel,
.score-panel,
.student-score-panel {
  padding: 16px;
  margin-bottom: 14px;
}

.score-panel {
  background:
    radial-gradient(circle at 8% 4%, rgba(39, 174, 184, 0.15), transparent 25%),
    radial-gradient(circle at 92% 0%, rgba(116, 91, 200, 0.13), transparent 25%),
    linear-gradient(135deg, rgba(241, 246, 255, 0.86), rgba(235, 241, 248, 0.78));
}

.unified-score-panel {
  padding: 26px;
  border-color: rgba(79, 99, 216, 0.14);
}

.unified-score-panel > .section-head {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(96, 117, 150, 0.12);
}

.unified-score-panel > .section-head h2 {
  font-size: 30px;
  line-height: 1.18;
  background: linear-gradient(135deg, #1c2436, #4f63d8 55%, #27aeb8);
  -webkit-background-clip: text;
  color: transparent;
}

.standard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 12px;
}

.standard-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.criterion-standard {
  padding: 12px;
  border: 1px solid rgba(96, 117, 150, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.criterion-standard header {
  display: grid;
  gap: 5px;
  margin-bottom: 8px;
}

.criterion-standard header strong {
  color: var(--text);
  font-size: 13px;
}

.criterion-standard header span {
  color: #5367ff;
  font-size: 11px;
  font-weight: 900;
}

.criterion-standard > p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.level-grid {
  display: grid;
  gap: 8px;
}

.level-grid div {
  display: grid;
  gap: 4px;
  align-items: center;
  padding: 9px 10px;
  border-radius: 8px;
  background: rgba(246, 248, 255, 0.84);
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.45;
}

.level-grid b,
.level-grid em {
  color: var(--text);
  font-style: normal;
}

.standard-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
}

.standard-item span {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.standard-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.criteria-overview-panel {
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 12%, rgba(88, 101, 216, 0.12), transparent 28%),
    rgba(255, 255, 255, 0.72);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px) saturate(160%);
}

.criteria-overview-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.criterion-overview-card {
  min-height: 118px;
  padding: 12px;
  border: 1px solid rgba(96, 117, 150, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.criterion-overview-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 14px;
}

.criterion-overview-card span {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 3px 7px;
  border-radius: 999px;
  color: #5367ff;
  background: rgba(88, 101, 216, 0.09);
  font-size: 11px;
  font-weight: 900;
}

.criterion-overview-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.score-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.unified-score-form {
  grid-template-columns: 1fr;
  gap: 16px;
}

.criterion-card {
  display: grid;
  gap: 10px;
  padding: 13px 14px;
  border: 1px solid rgba(96, 117, 150, 0.12);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(246, 248, 255, 0.72));
}

.full-criterion-card {
  --card-a: rgba(79, 99, 216, 0.18);
  --card-b: rgba(39, 174, 184, 0.12);
  --card-c: #4f63d8;
  grid-template-columns: minmax(190px, 0.7fr) minmax(280px, 1.15fr) minmax(230px, 0.8fr);
  gap: 14px;
  align-items: stretch;
  padding: 15px;
  position: relative;
  overflow: hidden;
  border-color: color-mix(in srgb, var(--card-c) 25%, transparent);
  background:
    radial-gradient(circle at 96% 10%, var(--card-a), transparent 28%),
    radial-gradient(circle at 4% 95%, var(--card-b), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(239, 244, 255, 0.68));
  box-shadow: 0 18px 42px rgba(31, 38, 72, 0.1);
}

.full-criterion-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--card-c), transparent);
}

.full-criterion-card::after {
  content: "";
  position: absolute;
  right: -36px;
  top: -38px;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  background: var(--card-a);
  filter: blur(4px);
  opacity: 0.65;
  animation: softPulse 5s ease-in-out infinite;
}

.full-criterion-card:nth-child(6n + 1) {
  --card-a: rgba(79, 99, 216, 0.2);
  --card-b: rgba(39, 174, 184, 0.12);
  --card-c: #4f63d8;
}

.full-criterion-card:nth-child(6n + 2) {
  --card-a: rgba(36, 162, 120, 0.2);
  --card-b: rgba(232, 160, 44, 0.12);
  --card-c: #24a278;
}

.full-criterion-card:nth-child(6n + 3) {
  --card-a: rgba(195, 92, 138, 0.2);
  --card-b: rgba(116, 91, 200, 0.12);
  --card-c: #c35c8a;
}

.full-criterion-card:nth-child(6n + 4) {
  --card-a: rgba(39, 174, 184, 0.2);
  --card-b: rgba(79, 99, 216, 0.12);
  --card-c: #27aeb8;
}

.full-criterion-card:nth-child(6n + 5) {
  --card-a: rgba(232, 160, 44, 0.22);
  --card-b: rgba(195, 92, 138, 0.1);
  --card-c: #e8a02c;
}

.full-criterion-card:nth-child(6n) {
  --card-a: rgba(116, 91, 200, 0.2);
  --card-b: rgba(36, 162, 120, 0.11);
  --card-c: #745bc8;
}

@keyframes softPulse {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.45; }
  50% { transform: translate3d(-10px, 8px, 0) scale(1.08); opacity: 0.72; }
}

.criterion-overview-block,
.criterion-standard-block,
.criterion-slider-block {
  padding: 16px;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(96, 117, 150, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.66), rgba(245, 248, 255, 0.5)),
    var(--card-b);
  backdrop-filter: blur(10px);
}

.criterion-standard-block {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(245, 248, 255, 0.48)),
    var(--card-a);
}

.criterion-slider-block {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(245, 248, 255, 0.46)),
    color-mix(in srgb, var(--card-c) 12%, transparent);
}

.criterion-overview-block strong {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
  font-size: 21px;
  line-height: 1.25;
}

.criterion-overview-block span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--card-c);
  background: var(--card-a);
  font-size: 13px;
  font-weight: 900;
}

.criterion-overview-block p,
.criterion-standard-block p,
.criterion-slider-block p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.criterion-title.compact {
  margin-bottom: 8px;
}

.criterion-slider-block {
  align-content: start;
}

.criterion-slider-block > span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 900;
}

.full-criterion-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(31, 38, 72, 0.14);
}

.full-criterion-card .score-slider {
  background: linear-gradient(90deg, var(--card-c) var(--fill), rgba(96, 117, 150, 0.16) var(--fill));
}

.full-criterion-card .score-slider::-webkit-slider-thumb {
  background: linear-gradient(135deg, var(--card-c), var(--cyan));
}

.full-criterion-card .score-slider::-moz-range-thumb {
  background: linear-gradient(135deg, var(--card-c), var(--cyan));
}

.full-criterion-card .level-grid div {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(248, 250, 255, 0.58));
}

.full-criterion-card .level-grid b {
  color: var(--card-c);
}

.criterion-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 230px);
  gap: 16px;
  align-items: center;
}

.criterion-title {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.criterion-title strong {
  font-size: 17px;
  font-weight: 800;
}

.criterion-title span {
  color: var(--card-c, #5367ff);
  background: var(--card-a, rgba(95, 124, 255, 0.1));
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 13px;
  font-weight: 900;
}

.criterion-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.score-box {
  gap: 10px;
}

.slider-value {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  color: var(--muted);
}

.slider-value strong {
  color: var(--blue);
  font-size: 30px;
  line-height: 1;
}

.slider-value em {
  font-style: normal;
  font-weight: 800;
}

.score-slider {
  --fill: 0%;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue) var(--fill), rgba(96, 117, 150, 0.16) var(--fill));
  box-shadow: none;
  appearance: none;
}

.score-slider::-webkit-slider-thumb {
  width: 24px;
  height: 24px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 8px 20px rgba(88, 101, 216, 0.28);
  appearance: none;
}

.score-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 8px 20px rgba(88, 101, 216, 0.28);
}

.inline-upload {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.upload-box {
  border: 1px dashed rgba(95, 124, 255, 0.34);
  border-radius: 8px;
  padding: 13px;
  background: rgba(246, 248, 255, 0.78);
}

.upload-box img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 10px;
  border: 1px solid var(--line);
}

.comment-box {
  grid-column: 1 / -1;
  margin-top: 4px;
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.score-panel .my-score-panel {
  grid-column: 1 / -1;
  margin: 4px 0 0;
}

.report-stack {
  display: grid;
  gap: 18px;
  margin-bottom: 18px;
}

.ranking-hero,
.radar-panel,
.dimension-panel,
.top-dimension-panel {
  padding: 20px;
}

.trend-panel {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 48px rgba(31, 38, 72, 0.11);
  backdrop-filter: blur(20px) saturate(160%);
}

.trend-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.trend-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.trend-legend i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.trend-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.trend-card {
  --trend-c: #4f63d8;
  --trend-bg: rgba(79, 99, 216, 0.1);
  padding: 13px;
  border: 1px solid color-mix(in srgb, var(--trend-c) 24%, transparent);
  border-radius: 8px;
  background:
    radial-gradient(circle at 90% 12%, var(--trend-bg), transparent 30%),
    rgba(255, 255, 255, 0.66);
}

.trend-card:nth-child(5n + 1) { --trend-c: #4f63d8; --trend-bg: rgba(79, 99, 216, 0.13); }
.trend-card:nth-child(5n + 2) { --trend-c: #24a278; --trend-bg: rgba(36, 162, 120, 0.13); }
.trend-card:nth-child(5n + 3) { --trend-c: #c35c8a; --trend-bg: rgba(195, 92, 138, 0.13); }
.trend-card:nth-child(5n + 4) { --trend-c: #27aeb8; --trend-bg: rgba(39, 174, 184, 0.13); }
.trend-card:nth-child(5n) { --trend-c: #e8a02c; --trend-bg: rgba(232, 160, 44, 0.14); }

.trend-card header strong {
  color: var(--trend-c);
}

.trend-card header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.trend-card header strong {
  color: var(--text);
}

.trend-card header span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.trend-lines {
  display: grid;
  gap: 9px;
}

.trend-row {
  display: grid;
  grid-template-columns: 1fr 38px;
  gap: 7px;
  align-items: center;
}

.trend-row em {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.trend-row i {
  height: 9px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(96, 117, 150, 0.14);
}

.trend-row b {
  display: block;
  height: 100%;
  border-radius: inherit;
}

.trend-row span {
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  text-align: right;
}

.ranking-hero {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: 18px;
  align-items: stretch;
  background:
    radial-gradient(circle at 88% 16%, rgba(53, 185, 200, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(239, 243, 255, 0.74));
}

.ranking-title {
  display: grid;
  align-content: center;
  gap: 10px;
}

.ranking-title span {
  color: #5367ff;
  font-weight: 900;
}

.ranking-title h2 {
  margin: 0;
  max-width: 360px;
  font-size: 36px;
  line-height: 1.2;
}

.ranking-title p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.top-projects {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.top-project {
  min-height: 172px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 80px;
  gap: 12px;
  align-items: start;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 16px 32px rgba(31, 38, 72, 0.1);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transform: translateY(0);
}

.top-project.active,
.top-project:hover {
  border-color: rgba(88, 101, 216, 0.35);
  background: rgba(255, 255, 255, 0.82);
  transform: translateY(-3px);
}

.top-project.top-1 {
  min-height: 202px;
  background: linear-gradient(145deg, rgba(255, 252, 239, 0.9), rgba(255, 255, 255, 0.78));
}

.top-project h3 {
  margin: 2px 0 8px;
  font-size: 22px;
}

.top-project p {
  margin: 0;
  color: var(--muted);
}

.top-project > i {
  grid-column: 1 / -1;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(96, 117, 150, 0.14);
}

.top-project > i b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--cyan), var(--violet));
}

.report-split {
  display: grid;
  grid-template-columns: minmax(390px, 1.1fr) minmax(320px, 0.9fr);
  gap: 18px;
}

.radar-compare {
  display: grid;
  place-items: center;
  min-height: 430px;
}

.project-radar-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.project-radar-tabs button {
  min-height: 36px;
  padding: 8px 13px;
  color: var(--muted);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
  box-shadow: none;
}

.project-radar-tabs button.active {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.radar-focus {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(240px, 1.05fr);
  gap: 18px;
  align-items: center;
}

.radar-chart {
  width: min(100%, 390px);
}

.radar-chart.single {
  width: min(100%, 430px);
}

.radar-chart svg {
  width: 100%;
  height: auto;
  display: block;
}

.radar-chart text {
  fill: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.radar-score-list {
  display: grid;
  gap: 10px;
}

.radar-score-row,
.insight-row {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) 48px;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
}

.radar-score-row i,
.insight-row i {
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(96, 117, 150, 0.14);
}

.radar-score-row b,
.insight-row b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.insight-row.weak b {
  background: linear-gradient(90deg, var(--warning), var(--pink));
}

.radar-score-row em,
.insight-row em {
  color: var(--text);
  font-style: normal;
  font-weight: 900;
  text-align: right;
}

.project-insights {
  display: grid;
  gap: 14px;
}

.insight-card {
  padding: 16px;
  border: 1px solid rgba(96, 117, 150, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
}

.insight-card.main {
  background: linear-gradient(135deg, rgba(88, 101, 216, 0.12), rgba(53, 185, 200, 0.1)), rgba(255, 255, 255, 0.72);
}

.insight-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.insight-card h3 {
  margin: 0 0 12px;
}

.insight-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 34px;
}

.insight-card p {
  margin: 0;
  color: var(--muted);
}

.radar-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.radar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.radar-legend i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dimension-summary {
  display: grid;
  gap: 12px;
}

.dimension-compare {
  padding: 14px;
  border: 1px solid rgba(96, 117, 150, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.dimension-compare header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.dimension-compare header strong {
  color: var(--text);
}

.dimension-compare header span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.compare-bars {
  display: grid;
  gap: 9px;
}

.compare-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 44px;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
}

.compare-row i {
  height: 9px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(96, 117, 150, 0.14);
}

.compare-row b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.compare-row em {
  color: var(--text);
  font-style: normal;
  font-weight: 900;
  text-align: right;
}

.top-dimension-panel > .section-head {
  display: none;
}

.top-dimension-panel::before {
  content: "维度明细";
  display: block;
  margin-bottom: 14px;
  color: var(--text);
  font-size: 22px;
  font-weight: 900;
}

.summary-grid,
.visual-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.summary-card {
  min-height: 150px;
  padding: 20px;
  display: grid;
  align-content: space-between;
  position: relative;
  overflow: hidden;
}

.summary-card::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -46px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  opacity: 0.42;
}

.summary-1::after {
  background: #bdeee4;
}

.summary-2::after {
  background: #d7dcff;
}

.summary-3::after {
  background: #ffd7e6;
}

.summary-card span,
.viz-card-head span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.summary-card strong {
  color: var(--text);
  font-size: 42px;
  line-height: 1;
}

.summary-card em {
  color: var(--muted);
  font-style: normal;
}

.viz-card {
  padding: 20px;
  overflow: hidden;
}

.viz-card-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.viz-card h3 {
  margin: 6px 0 0;
  font-size: 24px;
}

.role-bars {
  display: grid;
  gap: 13px;
}

.role-bar {
  display: grid;
  gap: 7px;
}

.role-bar > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}

.role-bar strong {
  color: var(--text);
}

.role-bar i {
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(96, 117, 150, 0.14);
}

.role-bar b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--cyan));
}

.role-bar.teacher b {
  background: linear-gradient(90deg, var(--blue), var(--violet));
}

.role-bar.leader b {
  background: linear-gradient(90deg, var(--warning), var(--pink));
}

.report-table-wrap {
  padding: 20px;
  overflow-x: auto;
}

.report-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.report-table th,
.report-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}

.report-table th {
  color: var(--muted);
  font-size: 13px;
}

.report-table tbody tr {
  transition: background 0.2s ease, transform 0.2s ease;
}

.report-table tbody tr:hover {
  background: rgba(88, 101, 216, 0.06);
}

.rank-badge {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.rank-badge.rank-1 {
  background: linear-gradient(135deg, #f5a524, #ffcf5a);
}

.rank-badge.rank-2 {
  background: linear-gradient(135deg, #7d8ca6, #c3cbd8);
}

.rank-badge.rank-3 {
  background: linear-gradient(135deg, #c56c96, #f2a8c5);
}

.detail-reports {
  display: grid;
  gap: 18px;
}

.dimension-section {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 10%, rgba(53, 185, 200, 0.12), transparent 26%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.88), rgba(239, 243, 250, 0.84));
  box-shadow: var(--soft-shadow);
}

.dimension-section header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  margin-bottom: 16px;
}

.dimension-section header span {
  color: var(--muted);
  font-weight: 800;
}

.dimension-section h3 {
  margin-bottom: 0;
  font-size: 24px;
}

.dimension-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
}

.dimension-card {
  min-height: 142px;
  padding: 16px;
  border-radius: 8px;
  display: grid;
  align-content: space-between;
  color: #fff;
  box-shadow: 0 16px 30px rgba(33, 41, 66, 0.13);
}

.dimension-card span {
  font-weight: 800;
  line-height: 1.35;
}

.dimension-card strong {
  font-size: 36px;
  line-height: 1;
}

.dimension-card em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.dimension-card.tone-1 {
  background: linear-gradient(135deg, #5668d9, #31a8c4);
}

.dimension-card.tone-2 {
  background: linear-gradient(135deg, #7b66c7, #c56c96);
}

.dimension-card.tone-3 {
  background: linear-gradient(135deg, #2f9a83, #4f88d9);
}

.dimension-card.tone-4 {
  background: linear-gradient(135deg, #c47a46, #c56c96);
}

.dimension-card.tone-5 {
  background: linear-gradient(135deg, #344563, #5865d8);
}

.dimension-card.tone-6 {
  background: linear-gradient(135deg, #2d8fa2, #7b66c7);
}

.bar-row {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) 76px;
  gap: 12px;
  align-items: center;
  margin: 12px 0;
}

.bar-track {
  height: 12px;
  border-radius: 999px;
  background: rgba(96, 117, 150, 0.14);
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--blue), var(--violet));
}

.student-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.student-score {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
}

.student-score header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.detail-score-board {
  display: grid;
  gap: 16px;
}

.detail-score-project {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 8%, rgba(79, 99, 216, 0.13), transparent 28%),
    rgba(236, 241, 250, 0.78);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px) saturate(155%);
}

.detail-score-project > header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 14px;
}

.detail-score-project > header span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.detail-score-project h2 {
  margin: 5px 0 0;
}

.detail-score-summary {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 4px 12px;
  align-items: baseline;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.detail-score-summary strong {
  color: var(--blue);
  font-size: 24px;
}

.detail-score-list {
  display: grid;
  gap: 12px;
}

.detail-score-user {
  padding: 14px;
  border: 1px solid rgba(96, 117, 150, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.6);
}

.detail-score-user-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.detail-score-user-head strong {
  display: block;
  font-size: 17px;
}

.detail-score-user-head span {
  color: var(--muted);
  font-size: 13px;
}

.detail-score-user-head em {
  color: var(--green);
  font-size: 22px;
  font-style: normal;
  font-weight: 900;
}

.detail-score-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.detail-score-grid div {
  padding: 9px;
  border-radius: 8px;
  background: rgba(245, 248, 255, 0.72);
}

.detail-score-grid span {
  display: block;
  min-height: 34px;
  color: var(--muted);
  font-size: 12px;
}

.detail-score-grid strong {
  color: var(--text);
  font-size: 18px;
}

.detail-score-grid em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.detail-score-project.table-mode {
  padding: 16px;
}

.detail-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(96, 117, 150, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.detail-score-table {
  width: 100%;
  min-width: 1280px;
  border-collapse: collapse;
}

.detail-score-table th,
.detail-score-table td {
  padding: 10px 9px;
  border-bottom: 1px solid rgba(96, 117, 150, 0.12);
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
}

.detail-score-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  color: var(--text);
  background: rgba(229, 237, 250, 0.94);
  font-size: 13px;
}

.detail-score-table th small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.detail-score-table tbody tr {
  background: rgba(255, 255, 255, 0.48);
}

.detail-score-table tbody tr:nth-child(even) {
  background: rgba(242, 246, 253, 0.66);
}

.detail-score-table tbody tr.not-scored {
  color: var(--muted);
}

.detail-score-table b {
  color: var(--blue);
}

.detail-score-table em {
  color: var(--muted);
  font-style: normal;
}

.role-pill {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  color: #4f63d8;
  background: rgba(79, 99, 216, 0.1);
  font-size: 12px;
  font-weight: 900;
}

.account-layout {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: 18px;
}

.account-form,
.account-list {
  padding: 20px;
}

.account-form {
  display: grid;
  gap: 14px;
  align-self: start;
}

.user-row {
  display: grid;
  grid-template-columns: 1fr 90px;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

@media (max-width: 900px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    height: auto;
  }

  .content {
    padding: 18px;
  }

  .topbar,
  .detail-header,
  .account-layout,
  .criterion-main,
  .my-score-panel,
  .ranking-hero,
  .report-split {
    display: grid;
    grid-template-columns: 1fr;
  }

  .top-projects {
    grid-template-columns: 1fr;
  }

  .radar-focus {
    grid-template-columns: 1fr;
  }

  .level-grid div,
  .radar-score-row,
  .insight-row,
  .score-form {
    grid-template-columns: 1fr;
  }

  .criteria-overview-grid,
  .standard-list,
  .trend-grid {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  }

  .full-criterion-card {
    grid-template-columns: 1fr;
  }
}

@media print {
  body {
    background: #ffffff;
  }

  .sidebar,
  .top-actions,
  .accountView,
  #scoreView,
  #accountView {
    display: none !important;
  }

  .app-shell {
    display: block;
  }

  .content {
    padding: 0;
  }

  .topbar,
  .dimension-section,
  .dimension-card {
    box-shadow: none;
    break-inside: avoid;
  }
}
