/* --- Global & Variables --- */
:root {
  --primary: #2752b8;
  --primary-light: #eef2fd;
  --primary-dark: #1e3d8a;
  --bg: #f8f9fc;
  --bg-card: #ffffff;
  --text-main: #1a1a18;
  --text-sub: #666666;
  --border: #e2e8f0;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  --info-blue: #2752b8;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--bg);
  color: var(--text-main);
  line-height: 1.6;
}

/* --- Layout --- */
.landing-container {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  background: linear-gradient(rgba(248, 249, 252, 0.85), rgba(238, 242, 253, 0.85)), url('../demo附圖/566912.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.landing-content {
  max-width: 1200px;
  width: 100%;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(15px);
  padding: 80px 60px;
  border-radius: 40px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
  margin: 40px 20px;
}

.hero-section {
  text-align: center;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-brand-container {
  max-width: 700px;
  width: 100%;
  margin-bottom: 20px;
}

.hero-brand-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.btn-start {
  background: #1a2a4a;
  color: white;
  border: none;
  padding: 16px 56px;
  font-size: 19px;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 20px rgba(26, 42, 74, 0.2);
}

.btn-start:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(26, 42, 74, 0.3);
  background: #1e3d8a;
}

.landing-section {
  margin-bottom: 100px;
}

.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 48px;
  color: #1a2a4a;
  position: relative;
  padding-bottom: 14px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: #2752b8;
  border-radius: 2px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.85);
  padding: 48px 24px;
  border-radius: 24px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

.f-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1a2a4a;
}

.feature-card p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.step-item {
  position: relative;
  padding: 40px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  transition: background 0.3s ease;
}

.step-item:hover {
  background: rgba(255, 255, 255, 0.8);
}

.step-num {
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 72px;
  font-weight: 900;
  color: #2752b8;
  opacity: 0.15;
  line-height: 1;
}

.step-item h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1a2a4a;
}

.step-item p {
  color: #64748b;
  font-size: 15px;
}

@media (max-width: 1100px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .step-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .landing-content {
    padding: 60px 40px;
  }
}

@media (max-width: 640px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .landing-title {
    font-size: 40px;
  }
  .btn-start {
    width: 100%;
    padding: 18px 32px;
  }
}

/* --- App Layout --- */
.top-nav {
  background: var(--bg-card);
  padding: 16px 32px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--primary);
  font-weight: 700;
  font-size: 20px;
}

.nav-brand {
  font-weight: 700;
  font-size: 18px;
  color: #1a2a4a;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.nav-subtitle {
  font-size: 13px;
  color: var(--text-sub);
  margin-left: 16px;
  padding-left: 16px;
  border-left: 1px solid var(--border);
}

.layout-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px;
  gap: 32px;
}

.sidebar {
  width: 260px;
  flex-shrink: 0;
}

.app {
  flex: 1;
  max-width: 800px;
}

/* --- Sidebar --- */
.login-badge, .member-badge {
  background: var(--bg-card);
  padding: 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.login-badge:hover, .member-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}

.member-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #eee;
}

.member-name {
  font-weight: 600;
  font-size: 15px;
}

.member-stats {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.member-status {
  font-size: 11px;
  padding: 2px 6px;
  background: #eef2fd;
  color: var(--primary);
  border-radius: 4px;
  font-weight: 600;
}

.member-points {
  font-size: 12px;
  color: #888;
}

.sidebar-divider {
  margin: 24px 0;
  border: none;
  border-top: 1px solid var(--border);
}

.sidebar h3 {
  font-size: 14px;
  color: #888;
  margin-bottom: 16px;
  padding-left: 4px;
}

.history-list {
  list-style: none;
}

.history-item {
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4px;
}

.history-item:hover {
  background: #edf2f7;
}

.history-content {
  flex: 1;
  font-size: 14px;
}

.history-delete-btn {
  background: none;
  border: none;
  color: #ccc;
  cursor: pointer;
  padding: 4px;
  font-size: 12px;
  opacity: 0;
}

.history-item:hover .history-delete-btn {
  opacity: 1;
}

.history-delete-btn:hover {
  color: #ff4d4f;
}

/* --- Progress Bar --- */
.progress {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}

.prog-step {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ccc;
  font-size: 14px;
  font-weight: 500;
}

.prog-step.active {
  color: var(--primary);
}

.prog-step.done {
  color: #2a7a4f;
}

.prog-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.active .prog-dot {
  background: var(--primary);
  color: white;
}

.done .prog-dot {
  background: #2a7a4f;
  color: white;
}

.prog-line {
  flex: 1;
  height: 2px;
  background: #eee;
  margin: 0 16px;
}

/* --- Card & Steps --- */
.card {
  background: var(--bg-card);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.step {
  display: none;
}

.step.active {
  display: block;
}

.section-label {
  font-size: 15px;
  font-weight: 700;
  margin: 24px 0 12px;
  display: flex;
  align-items: center;
}

.section-subdesc {
  font-size: 13px;
  color: var(--text-sub);
  margin-bottom: 16px;
}

.discipline-row {
  display: flex;
  gap: 12px;
}

.discipline-select {
  flex: 1;
  padding: 12px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  outline: none;
}

.upload-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

.upload-zone.locked {
  background: #fcfcfc;
  cursor: not-allowed;
}

.upload-zone:not(.locked):hover {
  border-color: var(--primary);
  background: var(--primary-light);
}

.upload-zone h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.upload-zone p {
  font-size: 14px;
  color: #888;
}

.file-badge {
  margin-top: 16px;
  background: #e6f7ed;
  color: #2a7a4f;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-row {
  margin-top: 32px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.btn-primary {
  background: var(--primary);
  color: white;
  border: none;
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.btn-secondary {
  background: #eee;
  color: #666;
  border: none;
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.demo-note {
  font-size: 12px;
  color: #aaa;
  text-align: right;
  margin-top: 12px;
}

/* --- Settings (Step 2) --- */
.pkg-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.pkg-btn {
  background: white;
  border: 1.5px solid var(--border);
  padding: 16px;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}

.pkg-btn.active {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary);
}

.pkg-desc {
  font-size: 11px;
  color: #888;
  margin-top: 4px;
}

.select-all-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.link-btn {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 13px;
  text-decoration: underline;
  cursor: pointer;
}

.theory-grid-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}

.theory-direction-group {
  border: 1px solid #edf2f7;
  border-radius: 12px;
  padding: 20px;
  background: #fcfdfe;
}

.dir-header {
  margin-bottom: 16px;
  border-left: 4px solid var(--primary);
  padding-left: 12px;
}

.dir-title {
  font-weight: 700;
  font-size: 16px;
  color: var(--text-main);
}

.dir-desc {
  font-size: 12px;
  color: var(--text-sub);
  margin-top: 2px;
}

.dir-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.theory-card {
  background: white;
  border: 1px solid var(--border);
  padding: 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
}

.theory-card:hover {
  border-color: #cbd5e0;
}

.theory-card.selected {
  border-color: var(--primary);
  background: var(--primary-light);
  box-shadow: 0 2px 8px rgba(39, 82, 184, 0.1);
}

.t-name {
  font-size: 14px;
  font-weight: 600;
}

.t-subname {
  font-size: 11px;
  color: var(--primary);
  margin-bottom: 6px;
  font-style: italic;
}

.t-desc {
  font-size: 12px;
  color: #777;
  line-height: 1.4;
}

.row-opts {
  display: flex;
  gap: 10px;
}

.opt-btn {
  flex: 1;
  padding: 10px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
}

.opt-btn.selected {
  border-color: var(--primary);
  color: var(--primary);
  font-weight: 600;
}

.info-text-blue {
  font-size: 13px;
  color: var(--info-blue);
  margin-top: 10px;
  background: #f0f4ff;
  padding: 10px 14px;
  border-radius: 8px;
  line-height: 1.5;
}

.nlp-input {
  width: 100%;
  height: 100px;
  padding: 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  resize: none;
  outline: none;
}

.time-estimate {
  background: #fcfcfc;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pts-display {
  text-align: right;
}

.pts-icon {
  width: 24px;
  height: 24px;
  background: #f39c12;
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
  margin-right: 6px;
}

/* --- Generating (Step 3) --- */
.generating-view {
  text-align: center;
  padding: 40px 0;
}

.spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--primary-light);
  border-top: 4px solid var(--primary);
  border-radius: 50%;
  margin: 0 auto 24px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.gen-steps {
  list-style: none;
  margin-top: 40px;
  text-align: left;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.gen-steps li {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.gen-steps li.active {
  color: var(--text-main);
  font-weight: 600;
}

.gen-steps li.done {
  color: #2a7a4f;
}

.step-dot {
  width: 8px;
  height: 8px;
  background: #eee;
  border-radius: 50%;
}

.active .step-dot {
  background: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-light);
}

.done .step-dot {
  background: #2a7a4f;
}

/* --- Results (Step 4) --- */
.conditions-banner {
  background: #2d3748;
  color: #a0aec0;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 12px;
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

.condition-label {
  color: #fff;
  margin-right: 4px;
}

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.source-paper-tag {
  font-size: 11px;
  color: var(--primary);
  background: var(--primary-light);
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 8px;
}

.editable-subject {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.subject-edit-input {
  font-size: 24px;
  font-weight: 700;
  border: none;
  border-bottom: 2px solid transparent;
  background: none;
  padding: 4px 0;
  width: 100%;
  outline: none;
  transition: border-color 0.3s;
}

.subject-edit-input:focus {
  border-color: var(--primary);
}

.edit-icon {
  font-size: 16px;
  color: #ccc;
  cursor: pointer;
}

.badge {
  background: #e6f7ed;
  color: #2a7a4f;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.proposal-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 16px;
  overflow: hidden;
}

.proposal-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}

.proposal-num {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.proposal-title {
  flex: 1;
  font-weight: 600;
  font-size: 16px;
}

.chevron {
  font-size: 20px;
  color: #ccc;
  transition: transform 0.3s;
}

.proposal-body {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.proposal-body.open {
  padding: 0 24px 24px;
  max-height: 2000px;
}

.proposal-stats {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.stat-item {
  flex: 1;
  background: #f8fafc;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
}

.stat-label {
  font-size: 11px;
  color: #888;
  margin-bottom: 4px;
}

.stat-value {
  font-weight: 700;
  color: var(--text-main);
}

.proposal-section {
  margin-bottom: 20px;
}

.ps-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ps-text {
  font-size: 14px;
  color: #444;
}

.ref-container {
  margin-top: 8px;
}

.ref-toggle-btn {
  background: #f8fafc;
  border: 1px solid #edf2f7;
  color: #64748b;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ref-toggle-btn:hover {
  background: #f1f5f9;
}

.ref-chevron {
  transition: transform 0.2s;
}

.ref-list {
  list-style: none;
  padding: 12px;
  background: #fcfcfc;
  border: 1px solid #f1f1f1;
  border-radius: 8px;
  margin-top: 8px;
  display: none;
}

.ref-list.open {
  display: block;
}

.ref-list li {
  font-size: 12px;
  color: #666;
  margin-bottom: 8px;
  padding-left: 12px;
  position: relative;
}

.ref-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
}

.card-actions {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
}

.copy-btn {
  background: #f8fafc;
  border: 1px solid #edf2f7;
  color: #64748b;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.copy-btn:hover {
  background: #f1f5f9;
  border-color: #cbd5e0;
}

.copy-btn.copied {
  background: #e6f7ed;
  color: #2a7a4f;
  border-color: #7fc99a;
}

.bottom-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  align-items: flex-start;
}

.action-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.revival-btn, .redo-btn {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.revival-btn:hover {
  background: #e2e8f0;
}

.redo-btn:hover {
  background: #e2e2e2;
}

.action-desc {
  font-size: 11px;
  color: #888;
  line-height: 1.4;
  padding: 0 4px;
}

.revival-btn {
  background: #f1f5f9;
  color: #64748b;
}

.redo-btn {
  background: #eee;
  color: #666;
}

.revival-panel {
  margin-top: 24px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 24px;
  display: none;
}

.revival-panel.open {
  display: block;
}

.revival-panel h4 {
  font-size: 15px;
  margin-bottom: 16px;
}

.eliminated-list {
  list-style: none;
}

.eliminated-list li {
  font-size: 13px;
  padding: 12px 0;
  border-bottom: 1px solid #f1f1f1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.revive-btn {
  background: none;
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11px;
  cursor: pointer;
}

/* --- Modals --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-card {
  background: white;
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-modal {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #aaa;
}

.modal-body {
  padding: 24px;
}

.profile-section {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.profile-avatar.large {
  width: 80px;
  height: 80px;
}

.member-id {
  font-size: 12px;
  color: #888;
  margin-top: 4px;
}

.logout-btn {
  background: none;
  border: 1px solid #ff4d4f;
  color: #ff4d4f;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  margin-top: 12px;
  cursor: pointer;
}

.balance-card {
  background: linear-gradient(135deg, var(--primary) 0%, #3c3489 100%);
  padding: 24px;
  border-radius: 12px;
  color: white;
  text-align: center;
  margin-bottom: 32px;
}

.balance-label {
  font-size: 14px;
  opacity: 0.8;
}

.balance-value {
  font-size: 40px;
  font-weight: 800;
  margin-top: 8px;
}

.recharge-section h4, .records-section h4 {
  font-size: 16px;
  margin-bottom: 16px;
}

.recharge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.recharge-btn {
  background: white;
  border: 1.5px solid var(--border);
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  position: relative;
}

.recharge-btn.active {
  border-color: var(--primary);
}

.r-pts {
  font-weight: 700;
  font-size: 18px;
}

.r-price {
  font-size: 13px;
  color: #888;
  margin-top: 4px;
}

.r-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #f39c12;
  color: white;
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 20px;
  font-weight: 700;
}

.records-list {
  max-height: 200px;
  overflow-y: auto;
}

.record-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid #f1f1f1;
}

.record-desc {
  font-size: 14px;
}

.record-pts {
  font-weight: 700;
  font-size: 14px;
}

.record-pts.plus { color: #2a7a4f; }
.record-pts.minus { color: #d9534f; }

.record-date {
  font-size: 11px;
  color: #aaa;
  grid-column: span 2;
}
