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

:root {
  --primary: #4A90D9;
  --primary-dark: #357ABD;
  --primary-light: #e8f0fe;
  --success: #4CAF50;
  --danger: #e53935;
  --warning: #ff9800;
  --gray: #9e9e9e;
  --gray-light: #f5f5f5;
  --gray-border: #e0e0e0;
  --text: #333;
  --text-secondary: #666;
  --text-muted: #999;
  --shadow: 0 2px 8px rgba(0,0,0,0.08);
  --radius: 8px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  background: #f0f2f5;
  color: var(--text);
  min-height: 100vh;
}

/* ===== Login Page ===== */
.login-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.login-card {
  background: #fff;
  border-radius: 16px;
  padding: 48px 40px;
  width: 400px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.login-logo {
  text-align: center;
  margin-bottom: 32px;
}

.login-logo h1 {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 8px;
}

.login-logo p {
  font-size: 14px;
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  height: 44px;
  border: 2px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 0 16px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}

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

.practice-range-inputs {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 260px;
}

.practice-range-sep {
  color: var(--text-muted);
  font-size: 13px;
}

.practice-range-dual {
  margin-top: 10px;
}

.practice-range-track {
  position: relative;
  height: 24px;
  border: 1px solid #cfd9ea;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  user-select: none;
}

.practice-range-selected {
  position: absolute;
  top: 1px;
  bottom: 1px;
  border-radius: 3px;
  background: #8ab9f0;
}

.practice-range-thumb {
  position: absolute;
  top: -3px;
  width: 12px;
  height: 30px;
  border: 2px solid #6fa4df;
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
  cursor: pointer;
  transform: translateX(-50%);
  z-index: 3;
}

.practice-range-start {
  z-index: 2;
}

.practice-range-end {
  z-index: 3;
}

.practice-range-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 24px;
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover { background: var(--primary-dark); }

.btn-success { background: var(--success); color: #fff; }
.btn-success:hover { background: #43A047; }

.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { background: #c62828; }

.btn-warning { background: var(--warning); color: #fff; }

.btn-outline {
  background: #fff;
  color: var(--text-secondary);
  border: 1px solid var(--gray-border);
}
.btn-outline:hover { background: var(--gray-light); }

.btn-sm { height: 34px; padding: 0 14px; font-size: 13px; }
.btn-block { width: 100%; }

.login-error {
  background: #ffebee;
  color: var(--danger);
  padding: 10px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-bottom: 16px;
  display: none;
}

/* ===== Dashboard Layout ===== */
.dashboard {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 220px;
  background: #1a1a2e;
  color: #fff;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 100;
}

.sidebar-header {
  padding: 24px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar-header h2 {
  font-size: 18px;
  font-weight: 700;
}

.sidebar-header p {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

.sidebar-nav {
  flex: 1;
  padding: 12px 0;
  overflow-y: auto;
}

.nav-item {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  border-left: 3px solid transparent;
  gap: 10px;
}

.nav-item:hover {
  color: #fff;
  background: rgba(255,255,255,0.05);
}

.nav-item.active {
  color: #fff;
  background: rgba(74,144,217,0.2);
  border-left-color: var(--primary);
}

.nav-item .nav-icon {
  font-size: 18px;
  width: 24px;
  text-align: center;
}

.nav-item .nav-badge {
  margin-left: auto;
  background: var(--danger);
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 10px;
  min-width: 20px;
  text-align: center;
}

/* 后端状态指示器 */
.sidebar-server {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.server-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.server-dot.on { background: #4CAF50; box-shadow: 0 0 6px rgba(76,175,80,0.5); }
.server-dot.off { background: #e53935; box-shadow: 0 0 6px rgba(229,57,53,0.5); }
.server-dot.checking { background: #ff9800; animation: dotPulse 1s infinite; }

@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.server-text {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

.sidebar-footer {
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.sidebar-footer .user-name {
  font-size: 13px;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.8);
}

.btn-logout {
  width: 100%;
  padding: 8px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.2s;
}

.btn-logout:hover {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

.main-content {
  flex: 1;
  margin-left: 220px;
  padding: 24px 32px;
  min-height: 100vh;
}

/* ===== Page Sections ===== */
.page-section {
  display: none;
}
.page-section.active {
  display: block;
  animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.page-header h2 {
  font-size: 24px;
  font-weight: 700;
}

.page-header p {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ===== Stats Cards ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.stat-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.stat-card .stat-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
}

.stat-card .stat-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ===== Cards ===== */
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  overflow: hidden;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-light);
}

.card-header h3 {
  font-size: 16px;
  font-weight: 600;
}

.card-body { padding: 20px; }

/* ===== Table ===== */
.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

table th {
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  padding: 12px 16px;
  border-bottom: 2px solid var(--gray-light);
}

table td {
  padding: 14px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--gray-light);
  vertical-align: middle;
}

table tr:hover { background: #fafafa; }

/* ===== Forms ===== */
.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.form-row .form-group {
  flex: 1;
  min-width: 200px;
}

select.form-input {
  appearance: auto;
}

textarea.form-input {
  padding: 12px 16px;
  height: auto;
  min-height: 80px;
  resize: vertical;
}

/* ===== Tags & Badges ===== */
.tag {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.tag-blue { background: var(--primary-light); color: var(--primary); }
.tag-green { background: #e8f5e9; color: var(--success); }
.tag-red { background: #ffebee; color: var(--danger); }
.tag-orange { background: #fff3e0; color: var(--warning); }
.tag-gray { background: #f5f5f5; color: var(--gray); }

/* ===== Checkable Items ===== */
.check-item {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--gray-border);
  border-radius: 6px;
  margin-bottom: 6px;
  cursor: pointer;
  transition: all 0.15s;
  gap: 10px;
}
.check-item:hover { border-color: var(--primary); }
.check-item.checked {
  border-color: var(--success);
  background: #f1f8e9;
}
.check-box {
  width: 20px; height: 20px;
  border: 2px solid var(--gray-border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #fff;
  flex-shrink: 0;
  transition: all 0.15s;
}
.check-item.checked .check-box {
  background: var(--success);
  border-color: var(--success);
}
.check-label { font-size: 14px; }
.check-desc { font-size: 12px; color: var(--text-muted); margin-left: 30px; }

/* ===== Group ===== */
.group-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  padding: 10px 12px;
  background: var(--primary-light);
  border-radius: 6px 6px 0 0;
  margin-top: 12px;
}

/* ===== Modal ===== */
.modal-mask {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.45);
  z-index: 200;
  display: none;
}
.modal-mask.show { display: block; }

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 16px;
  width: 900px;
  max-width: 96vw;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 201;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  display: none;
}
.modal.show { display: block; animation: fadeIn 0.2s ease; }

.modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 { font-size: 18px; font-weight: 700; }

.modal-close {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0 4px;
}
.modal-close:hover { color: var(--text); }

.modal-body { padding: 24px; }

.modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--gray-light);
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

/* ===== Loading ===== */
.loading {
  text-align: center;
  padding: 60px;
  color: var(--text-muted);
  font-size: 15px;
}

.loading::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 3px solid var(--gray-border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== Proof Image ===== */
.proof-img {
  max-width: 80px;
  max-height: 80px;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid var(--gray-border);
}

/* ===== Empty ===== */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.empty-state p { margin-top: 8px; font-size: 14px; }

/* ===== Toast ===== */
.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 12px 24px;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  z-index: 999;
  animation: slideDown 0.3s ease;
  max-width: 360px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.toast.success { background: var(--success); }
.toast.error { background: var(--danger); }
.toast.warning { background: var(--warning); }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Progress Bar ===== */
.progress-bar {
  height: 8px;
  background: var(--gray-light);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 6px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), #67B8F7);
  border-radius: 4px;
  transition: width 0.3s;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .sidebar { width: 60px; }
  .sidebar-header h2 { display: none; }
  .sidebar-header p { display: none; }
  .nav-item span { display: none; }
  .nav-item .nav-badge { display: none; }
  .sidebar-footer .user-name { display: none; }
  .main-content { margin-left: 60px; padding: 16px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { flex-direction: column; }
}

/* ===== Action Buttons Row ===== */
.action-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* ===== Leave Detail ===== */
.leave-reason-text {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* ===== Student Calendar Mini ===== */
.calendar-mini {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-top: 12px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  background: #fff;
  border: 1px solid var(--gray-border);
}

.cal-day .day-num { font-size: 13px; font-weight: 600; }
.cal-day .day-stat { font-size: 10px; color: var(--text-muted); }

.cal-day.done { background: #e8f5e9; border-color: var(--success); }
.cal-day.fail { background: #ffebee; border-color: var(--danger); }
.cal-day.future { background: #f1f8e9; border-color: #a5d6a7; }
.cal-day.today { border-color: var(--primary); border-width: 2px; }
.cal-day.leave { background: #e3f2fd; border-color: #42A5F5; }

/* 紧凑日历 */
.cal-day-sm {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  background: #fff;
  border: 1px solid var(--gray-border);
  cursor: pointer;
  padding: 1px;
  min-height: 28px;
}
.cal-day-sm .day-num { font-size: 12px; font-weight: 600; }
.cal-day-sm:hover { border-color: var(--primary); background: #f5f8ff; }
.cal-day-sm.done { background: #c8e6c9; border-color: #66BB6A; }
.cal-day-sm.fail { background: #ffcdd2; border-color: #ef5350; }
.cal-day-sm.future { background: #f1f8e9; border-color: #a5d6a7; }
.cal-day-sm.today { border-color: var(--primary); border-width: 2px; }
.cal-day-sm.leave { background: #bbdefb; border-color: #42A5F5; }

/* ===== ICP Filing Footer ===== */
.filing-footer {
  text-align: center;
  padding: 16px 20px;
  font-size: 12px;
  color: #999;
  width: 100%;
}
.filing-footer a {
  color: #999;
  text-decoration: none;
}
.filing-footer a:hover {
  color: #666;
  text-decoration: underline;
}
.login-page .filing-footer {
  position: fixed;
  bottom: 0;
  left: 0;
}
.main-content .filing-footer {
  margin-top: 32px;
}

/* ===== Plan Cards (学员-学习计划) ===== */
.plan-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding: 0 4px;
}

.plan-section-header h3 {
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.plan-section-header .plan-count-tag {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
}

.plan-card {
  background: #fff;
  border: 1px solid var(--gray-border);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.15s;
}

.plan-card:hover {
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.learning-plan-card {
  position: relative;
  border: 1px solid #dbe6f3;
  box-shadow: 0 6px 18px rgba(23, 43, 77, 0.08);
  margin-bottom: 14px;
  transition: box-shadow 0.15s, transform 0.15s;
}

.learning-plan-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--primary);
}

.learning-plan-card-course::before {
  background: #4A90D9;
}

.learning-plan-card-practice::before {
  background: #4CAF50;
}

.learning-plan-card .plan-card-top,
.learning-plan-card .plan-card-actions,
.learning-plan-card .plan-items-inline-header,
.learning-plan-card .plan-items-list {
  padding-left: 22px;
}

.learning-plan-card:hover {
  box-shadow: 0 8px 24px rgba(23, 43, 77, 0.12);
  transform: translateY(-1px);
}

.plan-card-top {
  padding: 16px 18px;
}

.plan-card-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.plan-card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.plan-card-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 6px;
  line-height: 1.5;
}

.plan-card-progress {
  margin-top: 10px;
}

.plan-card-progress .progress-bar {
  height: 8px;
  background: #f0f0f0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 6px;
}

.plan-card-progress .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #4A90D9, #67B8F7);
  border-radius: 4px;
  transition: width 0.4s ease;
}

.plan-card-progress .progress-fill.full {
  background: linear-gradient(90deg, #4CAF50, #66BB6A);
}

.plan-card-progress-text {
  font-size: 12px;
  color: var(--text-muted);
}

.plan-card-progress-text strong {
  color: var(--primary);
  font-weight: 600;
}

.plan-card-actions {
  display: flex;
  gap: 8px;
  padding: 10px 18px;
  border-top: 1px solid #f5f5f5;
  background: #fafbfc;
}

.plan-card-actions .btn {
  font-size: 12px;
  height: 30px;
  padding: 0 14px;
}

.plan-detail-actions {
  padding: 8px 18px;
  background: #fff;
}

.learning-plan-card .plan-detail-actions {
  padding-left: 22px;
}

/* Inline plan items (expanded) */
.plan-items-inline {
  border-top: 1px solid var(--gray-border);
  background: #fafbfc;
}

.plan-items-inline-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 18px;
  font-size: 12px;
  color: var(--text-muted);
  border-bottom: 1px solid #f0f0f0;
}

.plan-item-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 13px;
}

.plan-item-row:last-child {
  border-bottom: none;
}

.plan-item-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  flex-shrink: 0;
}

.plan-item-num.done {
  background: #e8f5e9;
  color: #4CAF50;
}

.plan-item-body {
  flex: 1;
  min-width: 0;
}

.plan-item-title {
  font-weight: 500;
  color: var(--text);
}

.plan-item-title.done {
  text-decoration: line-through;
  color: var(--text-muted);
}

.plan-item-meta {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.plan-item-meta .date-tag {
  display: inline-block;
  padding: 1px 6px;
  border-radius: 3px;
  font-size: 10px;
  margin-right: 4px;
}

.date-tag.assigned {
  background: #e8f0fe;
  color: #4A90D9;
}

.date-tag.completed {
  background: #e8f5e9;
  color: #4CAF50;
}

/* Plan items inline empty state */
.plan-items-empty {
  text-align: center;
  padding: 24px 18px;
  color: var(--text-muted);
  font-size: 13px;
}

/* Practice plan section */
.practice-section {
  margin-top: 8px;
}

.practice-section-divider {
  height: 1px;
  background: var(--gray-border);
  margin: 20px 0;
}

.practice-form-toggle-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #f8fafc;
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  user-select: none;
}

.practice-form-toggle-bar:hover {
  background: #f0f4f8;
}

.practice-form-toggle-bar .toggle-arrow {
  font-size: 11px;
  transition: transform 0.2s;
}

.practice-form-toggle-bar .toggle-arrow.open {
  transform: rotate(90deg);
}

.practice-form-body {
  border: 1px solid var(--gray-border);
  border-top: none;
  border-radius: 0 0 8px 8px;
  padding: 14px 16px;
  background: #fff;
}

.practice-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.practice-form-grid .form-group {
  margin-bottom: 0;
}

.practice-form-grid .form-group label {
  font-size: 12px;
  margin-bottom: 4px;
}

.practice-form-grid .form-input {
  height: 36px;
  font-size: 13px;
}

.practice-form-grid .btn {
  height: 36px;
  font-size: 13px;
  align-self: flex-end;
}

/* Item rows (reuse for practice tasks/logs) */
.item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #f5f5f5;
  gap: 12px;
}

.item-row:last-child {
  border-bottom: none;
}
