/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f0f4f8;
  color: #1a1a2e;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ===== Header ===== */
.site-header {
  background: #0057a8;
  color: #fff;
  padding: 0 24px;
  height: 56px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  flex-shrink: 0;
}
.header-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-nwea {
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #ffd700;
}
.logo-sep {
  margin: 0 8px;
  opacity: 0.5;
}
.logo-map {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.header-user {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.9rem;
}
.user-name { font-weight: 600; }
.logout-link {
  color: #cce4ff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 3px 10px;
  border-radius: 3px;
  font-size: 0.82rem;
}
.logout-link:hover { background: rgba(255,255,255,0.15); }

/* ===== Progress Bar ===== */
.progress-bar-container {
  background: #e6eef7;
  border-bottom: 1px solid #c8d8e8;
  padding: 10px 24px;
}
.progress-bar-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.progress-label {
  font-size: 0.85rem;
  color: #3a5a80;
  white-space: nowrap;
  font-weight: 600;
  min-width: 110px;
}
.progress-track {
  flex: 1;
  height: 10px;
  background: #c8d8e8;
  border-radius: 5px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: #0057a8;
  border-radius: 5px;
  transition: width 0.4s ease;
}

/* ===== Main Content ===== */
.main-content {
  flex: 1;
  padding: 32px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ===== Cards ===== */
.card {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  width: 100%;
}
.card-narrow { max-width: 420px; }
.card-medium { max-width: 660px; }
.card-question { max-width: 820px; }
.center-card { margin: 0 auto; }

.card-header-blue {
  background: #0057a8;
  color: #fff;
  padding: 28px 32px 24px;
}
.card-header-blue h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.card-header-blue p {
  font-size: 0.95rem;
  opacity: 0.88;
}
.card-body { padding: 28px 32px; }

/* ===== Forms ===== */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2c4a6e;
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid #c8d8e8;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.2s;
  outline: none;
}
.form-input:focus { border-color: #0057a8; }
.form-label-lg {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #1a2e4a;
  margin-bottom: 10px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  text-align: center;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.btn-primary {
  background: #0057a8;
  color: #fff;
  border-color: #0057a8;
}
.btn-primary:hover { background: #003d7a; border-color: #003d7a; }
.btn-outline {
  background: transparent;
  color: #0057a8;
  border-color: #0057a8;
}
.btn-outline:hover { background: #e6eef7; }
.btn-full { width: 100%; }
.btn-lg { padding: 13px 28px; font-size: 1.05rem; }
.btn-sm { padding: 6px 14px; font-size: 0.85rem; }

/* ===== Alert ===== */
.alert {
  padding: 10px 16px;
  border-radius: 4px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  font-weight: 600;
}
.alert-info {
  background: #e3f2fd;
  color: #0d47a1;
  border-left: 4px solid #1976d2;
}
.alert-autodismiss {
  transition: opacity 0.6s ease;
}
.alert-autodismiss.dismissed {
  opacity: 0;
}
.alert-error {
  background: #fde8e8;
  color: #b71c1c;
  border-left: 4px solid #b71c1c;
}
.alert-warning {
  background: #fff8e1;
  color: #7a5c00;
  border-left: 4px solid #f9a825;
  display: none;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== Radio subject cards ===== */
.radio-group, .mode-group {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}
.radio-card, .mode-card {
  cursor: pointer;
  display: block;
}
.radio-card input, .mode-card input { display: none; }
.radio-card-inner, .mode-card-inner {
  display: block;
  border: 2px solid #c8d8e8;
  border-radius: 6px;
  padding: 14px 16px;
  transition: border-color 0.15s, background 0.15s;
  min-height: 90px;
}
.radio-card input:checked ~ .radio-card-inner,
.mode-card input:checked ~ .mode-card-inner {
  border-color: #0057a8;
  background: #eaf2ff;
}
.radio-card-inner:hover, .mode-card-inner:hover { border-color: #0057a8; }
.radio-icon { font-size: 1.4rem; display: block; margin-bottom: 4px; }
.radio-title, .mode-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: #1a2e4a;
  display: block;
  margin-bottom: 3px;
}
.radio-desc, .mode-desc {
  font-size: 0.82rem;
  color: #5a7a9a;
  display: block;
}
.mode-group { grid-template-columns: 1fr 1fr; margin-bottom: 24px; }

/* ===== Question ===== */
.question-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  border-bottom: 2px solid #e6eef7;
  background: #f7fafd;
}
.question-subject {
  font-weight: 700;
  font-size: 0.9rem;
  color: #0057a8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.question-counter {
  font-size: 0.88rem;
  color: #5a7a9a;
  font-weight: 600;
}
.question-body {
  padding: 28px 32px 16px;
}
.question-text {
  font-size: 1.25rem;
  line-height: 1.55;
  color: #1a2e4a;
  font-weight: 500;
}

/* ===== Question Image ===== */
.question-image {
  margin-top: 16px;
  text-align: center;
}
.question-image img {
  max-width: 260px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #dde3ea;
  background: #f5f7fa;
}

/* ===== Answer Options ===== */
.answer-list {
  padding: 8px 32px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.answer-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 2px solid #c8d8e8;
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  user-select: none;
}
.answer-option:hover { border-color: #0057a8; background: #f0f7ff; }
.answer-option.selected { border-color: #0057a8; background: #eaf2ff; }
.answer-radio { display: none; }
.answer-bubble {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e6eef7;
  border: 2px solid #b0c8e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #2c4a6e;
  flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.answer-option.selected .answer-bubble {
  background: #0057a8;
  border-color: #0057a8;
  color: #fff;
}
.answer-text {
  font-size: 1.05rem;
  color: #1a2e4a;
  line-height: 1.4;
}

/* Correct/Incorrect states (practice) */
.answer-correct {
  border-color: #1a7f37 !important;
  background: #eafbee !important;
  cursor: default;
}
.answer-wrong {
  border-color: #b71c1c !important;
  background: #fde8e8 !important;
  cursor: default;
}
.bubble-correct {
  background: #1a7f37 !important;
  border-color: #1a7f37 !important;
  color: #fff !important;
}
.bubble-wrong {
  background: #b71c1c !important;
  border-color: #b71c1c !important;
  color: #fff !important;
}
.answer-tag {
  margin-left: auto;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
}
.correct-tag { background: #1a7f37; color: #fff; }
.wrong-tag { background: #b71c1c; color: #fff; }

/* ===== Question Footer ===== */
.question-footer {
  padding: 16px 32px 28px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.practice-footer { flex-wrap: wrap; }

/* ===== Practice result ===== */
.result-explanation {
  padding: 16px 32px;
  background: #f7fafd;
  border-top: 1px solid #e6eef7;
  border-bottom: 1px solid #e6eef7;
}
.result-msg {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.correct-msg { color: #1a7f37; }
.incorrect-msg { color: #b71c1c; }
.rit-hint {
  font-size: 0.82rem;
  color: #5a7a9a;
}

/* ===== Badge ===== */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 700;
}
.badge-correct { background: #d4f5d8; color: #1a7f37; }
.badge-incorrect { background: #fde8e8; color: #b71c1c; }
.badge-complete { background: #d4f5d8; color: #1a7f37; }
.badge-progress { background: #fff3cd; color: #856404; }

/* ===== Results ===== */
.rit-display {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.rit-score-box {
  background: #0057a8;
  color: #fff;
  border-radius: 8px;
  padding: 20px 28px;
  text-align: center;
  min-width: 140px;
}
.rit-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.85;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.rit-score {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}
.rit-meta { display: flex; flex-direction: column; gap: 12px; }
.rit-stat { display: flex; flex-direction: column; }
.stat-label { font-size: 0.78rem; color: #5a7a9a; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.stat-value { font-size: 1.1rem; font-weight: 700; color: #1a2e4a; }
.rit-scale {
  margin-bottom: 24px;
  padding: 16px 0;
  border-top: 1px solid #e6eef7;
  border-bottom: 1px solid #e6eef7;
}
.scale-label-row, .scale-grades {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #5a7a9a;
  margin-bottom: 4px;
}
.scale-track {
  height: 16px;
  background: #e6eef7;
  border-radius: 8px;
  position: relative;
  overflow: visible;
  margin: 8px 0;
}
.scale-fill {
  height: 100%;
  background: linear-gradient(to right, #a8d0f7, #0057a8);
  border-radius: 8px;
  max-width: 100%;
}
.scale-marker {
  position: absolute;
  top: -24px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scale-marker::after {
  content: '';
  width: 3px;
  height: 32px;
  background: #0057a8;
  margin-top: 4px;
  border-radius: 2px;
}
.scale-marker-label {
  background: #0057a8;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
}
.results-note {
  font-size: 0.88rem;
  color: #5a7a9a;
  background: #f7fafd;
  border-radius: 4px;
  padding: 12px 16px;
  margin-bottom: 24px;
  border-left: 3px solid #0057a8;
}
.results-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== Instructions ===== */
.instructions-list {
  list-style: none;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.instructions-list li {
  padding: 10px 14px 10px 40px;
  background: #f7fafd;
  border-radius: 4px;
  border-left: 3px solid #0057a8;
  position: relative;
  font-size: 0.97rem;
  line-height: 1.4;
  counter-increment: item;
}
.instructions-list li::before {
  content: counter(item);
  position: absolute;
  left: 12px;
  font-weight: 700;
  color: #0057a8;
}
.instructions-list { counter-reset: item; }
.instructions-note {
  background: #fff8e6;
  border-left: 3px solid #ffd700;
  padding: 10px 14px;
  font-size: 0.88rem;
  color: #5a4a00;
  border-radius: 4px;
  margin-bottom: 24px;
}

/* ===== Admin ===== */
.admin-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.admin-header h1 { font-size: 1.6rem; color: #1a2e4a; }
.admin-section { margin-bottom: 36px; }
.admin-section h2 {
  font-size: 1.15rem;
  color: #1a2e4a;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e6eef7;
}

/* Stats grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.stat-card {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.09);
  overflow: hidden;
}
.stat-card-header {
  background: #0057a8;
  color: #fff;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.stat-username { font-weight: 700; font-size: 1rem; }
.stat-last-seen { font-size: 0.75rem; opacity: 0.8; }
.stat-card-body { padding: 14px 16px; }
.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px solid #f0f4f8;
  font-size: 0.88rem;
}
.stat-row:last-child { border-bottom: none; }
.stat-key { color: #5a7a9a; font-weight: 600; }
.stat-val { color: #1a2e4a; font-weight: 600; }
.rit-value { color: #0057a8; font-weight: 700; font-size: 1rem; }

.trend-up { color: #1a7f37; }
.trend-down { color: #b71c1c; }
.trend-flat { color: #5a7a9a; }

/* Admin Table */
.table-wrap { overflow-x: auto; }
.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 1px 6px rgba(0,0,0,0.09);
  border-radius: 6px;
  overflow: hidden;
  font-size: 0.9rem;
}
.admin-table th {
  background: #0057a8;
  color: #fff;
  padding: 12px 14px;
  text-align: left;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.admin-table td {
  padding: 11px 14px;
  border-bottom: 1px solid #e6eef7;
  color: #2c4a6e;
}
.admin-table tr:last-child td { border-bottom: none; }
.row-complete { background: #fff; }
.row-incomplete { background: #fefef7; }
.admin-table tr:hover td { background: #f0f7ff; }
.empty-state { color: #5a7a9a; font-style: italic; padding: 16px 0; }

/* ===== Footer ===== */
.site-footer {
  background: #1a2e4a;
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 12px;
  font-size: 0.78rem;
  flex-shrink: 0;
}

/* ===== Leo-Bucks ===== */
.leo-bucks {
  font-size: 0.82rem;
  font-weight: 700;
  background: #ffd700;
  color: #5a3e00;
  padding: 3px 10px;
  border-radius: 12px;
  white-space: nowrap;
}
.leo-bucks-negative {
  background: #fde8e8;
  color: #b71c1c;
}
.leo-bucks-result {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 10px 0 6px;
}
.leo-delta {
  font-size: 1.05rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
}
.leo-delta-pos { background: #ffd700; color: #5a3e00; }
.leo-delta-neg { background: #fde8e8; color: #b71c1c; }
.leo-balance {
  font-size: 0.88rem;
  color: #3a5a80;
}
.stat-leo-bucks {
  font-size: 0.78rem;
  font-weight: 700;
  background: #ffd700;
  color: #5a3e00;
  padding: 2px 8px;
  border-radius: 10px;
}
.stat-leo-bucks.leo-negative, .leo-negative {
  background: #fde8e8;
  color: #b71c1c;
}
.stat-last-seen-row {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.75);
  padding: 2px 16px 8px;
  background: #0057a8;
}

/* ===== Practice target badge ===== */
.practice-target-badge {
  font-size: 0.8rem;
  font-weight: 700;
  background: #e6eef7;
  color: #2c4a6e;
  padding: 3px 10px;
  border-radius: 12px;
  border: 1px solid #b0c8e0;
  margin-left: auto;
  margin-right: 8px;
}

/* ===== Admin Settings ===== */
.settings-card {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.09);
  padding: 20px 24px;
}
.settings-form { margin-bottom: 20px; }
.settings-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.settings-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 700;
  color: #1a2e4a;
  font-size: 0.95rem;
  flex: 1;
  min-width: 220px;
}
.settings-hint {
  font-size: 0.8rem;
  font-weight: 400;
  color: #5a7a9a;
}
.settings-control {
  display: flex;
  gap: 10px;
  align-items: center;
}
.settings-input {
  width: 90px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
}
.settings-scale {
  border-top: 1px solid #e6eef7;
  padding-top: 16px;
}

/* ===== Leo-Bucks coin burst animation ===== */
@keyframes coin-fly {
  0%   { transform: translate(0,0) scale(1); opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translate(var(--tx), var(--ty)) scale(0.4); opacity: 0; }
}
@keyframes coin-drain {
  0%   { transform: translate(0,0) scale(1); opacity: 1; }
  60%  { opacity: 0.8; }
  100% { transform: translate(var(--tx), var(--ty)) scale(0.3); opacity: 0; }
}
@keyframes leo-pop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.45); }
  70%  { transform: scale(0.9); }
  100% { transform: scale(1); }
}
@keyframes leo-shake {
  0%   { transform: translateX(0); }
  15%  { transform: translateX(-6px) rotate(-2deg); }
  30%  { transform: translateX(6px) rotate(2deg); }
  45%  { transform: translateX(-5px) rotate(-1deg); }
  60%  { transform: translateX(5px) rotate(1deg); }
  75%  { transform: translateX(-3px); }
  100% { transform: translateX(0); }
}
.coin-particle {
  position: fixed;
  font-size: 1.4rem;
  pointer-events: none;
  z-index: 9999;
  animation: coin-fly 0.7s ease-out forwards;
  transform-origin: center;
}
.drain-particle {
  position: fixed;
  font-size: 1.3rem;
  pointer-events: none;
  z-index: 9999;
  animation: coin-drain 0.8s ease-in forwards;
  transform-origin: center;
}
.leo-delta-pop {
  display: inline-block;
  animation: leo-pop 0.5s ease-out;
}
.leo-delta-shake {
  display: inline-block;
  animation: leo-shake 0.5s ease-out;
}

/* ===== Report button ===== */
.report-form { display: inline; }
.btn-report {
  background: none; border: none; color: #9e9e9e;
  font-size: 0.8rem; cursor: pointer; padding: 4px 8px;
  border-radius: 4px; margin-left: 8px;
}
.btn-report:hover { color: #c62828; background: #ffebee; }

/* ===== Flagged questions ===== */
.flag-count-badge {
  display: inline-flex; align-items: center; justify-content: center;
  background: #c62828; color: white; border-radius: 12px;
  font-size: 0.75rem; font-weight: 700; min-width: 22px; height: 22px;
  padding: 0 6px; margin-left: 8px; vertical-align: middle;
}
.flag-question-text { max-width: 280px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rit-set-form { display: flex; gap: 6px; align-items: center; }
.rit-set-input { width: 64px; text-align: center; font-weight: 700; padding: 3px 4px; font-size: 0.9rem; }

/* ===== Leo-Bucks set form ===== */
.leo-set-form { display: flex; align-items: center; gap: 6px; }
.leo-set-input { width: 72px; text-align: center; font-weight: 700; padding: 3px 6px; font-size: 0.95rem; }

/* ===== Practice History ===== */
.practice-history-block {
  border: 1px solid #dde3ea;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}
.practice-history-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #f0f4f8;
  cursor: pointer;
  user-select: none;
}
.practice-history-header:hover { background: #e2eaf3; }
.practice-summary { color: #5a7a9a; font-size: 0.9rem; flex: 1; }
.toggle-icon { font-size: 0.8rem; color: #5a7a9a; }
.practice-history-table-wrap { overflow-x: auto; }
.practice-table .practice-question-text {
  max-width: 300px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.row-incorrect td { background: #fff5f5; }
.badge-correct { background: #e8f5e9; color: #2e7d32; }
.badge-incorrect { background: #ffebee; color: #c62828; }

/* ===== Add Question Form ===== */
.aq-row { display: flex; gap: 16px; flex-wrap: wrap; }
.aq-field { display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 140px; }
.aq-textarea { min-height: 80px; resize: vertical; font-size: 1rem; }
.aq-answers { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.aq-answer-row { display: flex; align-items: center; gap: 8px; }
.aq-answer-label { display: flex; align-items: center; gap: 4px; cursor: pointer; }
.aq-answer-input { flex: 1; }

/* ===== Misc ===== */
.btn-danger { background: #c62828; color: white; border: none; }
.btn-danger:hover { background: #b71c1c; }
.text-muted { color: #aaa; font-size: 0.85rem; }

/* ===== Responsive ===== */
@media (max-width: 600px) {
  .radio-group, .mode-group { grid-template-columns: 1fr; }
  .card-body, .question-body, .answer-list, .question-footer { padding-left: 16px; padding-right: 16px; }
  .rit-display { flex-direction: column; }
  .admin-table { font-size: 0.8rem; }
  .admin-table th, .admin-table td { padding: 8px 10px; }
}
