:root {
  --bg: #f0f4f8;
  --surface: #ffffff;
  --primary: #0780E5;
  --primary-dark: #0562b8;
  --primary-light: #e8f2fd;
  --primary-xlight: #f0f7ff;
  --text-primary: #0f172a;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --border: #e2e8f0;
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --radius: 12px;
  --radius-sm: 8px;
  --green: #10b981;
  --orange: #f59e0b;
  --red: #ef4444;
  --purple: #8b5cf6;
}

/* 样式隔离在日报容器内，避免影响站点导航/底通 */
.daily-report-page {
  font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Noto Sans CJK SC', 'Source Han Sans SC', sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  min-height: calc(100vh - 200px);
  -webkit-font-smoothing: antialiased;
  font-size: 14px;
}

.daily-report-page *,
.daily-report-page *::before,
.daily-report-page *::after {
  box-sizing: border-box;
}

/* 不覆盖 body 全局字体/盒模型，避免破坏 zyt-header */

/* ── Header ── */
.daily-report-page .dr-header {
  max-width: 1384px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 28px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.daily-report-page .dr-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.daily-report-page .dr-logo {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary), #34b4f4);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.daily-report-page .dr-logo svg { width: 18px; height: 18px; fill: white; }

.daily-report-page .dr-header-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.3px;
}

.daily-report-page .dr-header-title span {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 8px;
}

.dr-header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  margin-left: 32px;
}

.dr-nav-item {
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}

.dr-nav-item:hover { background: var(--bg); color: var(--text-primary); }
.dr-nav-item.dr-active { background: var(--primary); color: white; }

.dr-nav-soon {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: default;
  position: relative;
}

.dr-soon-dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.daily-report-page .dr-header-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.dr-date-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
}

.dr-date-badge svg { width: 13px; height: 13px; fill: white; }

.dr-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  border: none;
  font-family: inherit;
}

.dr-btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.dr-btn-ghost:hover { background: var(--bg); color: var(--text-primary); }

.dr-btn-primary {
  background: var(--primary);
  color: white;
}

.dr-btn-primary:hover { background: var(--primary-dark); }

/* ── Main ── */
.dr-main {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 28px;
}

/* ── AI Summary Banner ── */
.dr-ai-banner {
  background: linear-gradient(135deg, #0655a8, var(--primary));
  border-radius: var(--radius);
  padding: 20px 26px;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}

.dr-ai-banner::before {
  content: '';
  position: absolute;
  right: -30px;
  top: -30px;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.dr-ai-banner::after {
  content: '';
  position: absolute;
  right: 80px;
  bottom: -50px;
  width: 140px;
  height: 140px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.dr-ai-banner-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 9px;
  letter-spacing: 0.5px;
}

.dr-ai-banner-label svg { width: 11px; height: 11px; fill: currentColor; }

.dr-ai-banner-text {
  font-size: 14px;
  color: rgba(255,255,255,0.93);
  line-height: 1.7;
}

.dr-ai-banner-text strong { color: #7dd3fc; font-weight: 600; }

.dr-ai-banner-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.dr-ai-stat {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
}

.dr-ai-stat .dr-val { font-weight: 700; color: #7dd3fc; }

/* ── KPI Row ── */
.dr-kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.dr-kpi-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  border-top: 3px solid transparent;
}

.dr-kpi-card:nth-child(1) { border-top-color: var(--primary); }
.dr-kpi-card:nth-child(2) { border-top-color: var(--green); }
.dr-kpi-card:nth-child(3) { border-top-color: var(--orange); }
.dr-kpi-card:nth-child(4) { border-top-color: var(--purple); }

.dr-kpi-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.dr-kpi-value {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -1px;
  font-variant-numeric: tabular-nums;
}

.dr-kpi-sub { font-size: 11px; color: var(--text-muted); margin-top: 4px; }

.dr-kpi-pct {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 1px 7px;
  border-radius: 10px;
}

.dr-kpi-pct.dr-blue { background: var(--primary-xlight); color: var(--primary); }
.dr-kpi-pct.dr-green { background: #dcfce7; color: #15803d; }

/* ── Section Header ── */
.dr-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  margin-top: 6px;
}

.dr-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.dr-section-title .dr-num {
  background: var(--primary);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
}

.dr-section-title svg { width: 15px; height: 15px; stroke: var(--primary); fill: none; stroke-width: 2; }

/* ── Card ── */
.dr-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 16px;
}

.dr-card-header {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dr-card-body { padding: 16px 18px; }

/* ── Row Layout ── */
.dr-row { display: grid; gap: 14px; }
.dr-row-2 { grid-template-columns: 1fr 1fr; }
.dr-row-1-2 { grid-template-columns: 1fr 360px; }

/* ── Trend Chart ── */
.dr-chart-wrap { height: 200px; position: relative; }

.dr-filter-tabs {
  display: flex;
  gap: 4px;
}

.dr-tab {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  color: var(--text-secondary);
  background: var(--bg);
  border: none;
  font-family: inherit;
}

.dr-tab.dr-active { background: var(--primary); color: white; }

/* ── Regional Distribution ── */
.dr-region-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.dr-region-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  background: var(--primary-xlight);
  border-radius: var(--radius-sm);
  font-size: 12px;
  border: 1px solid #d0e8fc;
}

.dr-region-name { font-weight: 500; color: var(--text-primary); min-width: 28px; }

.dr-region-bar-wrap {
  flex: 1;
  margin: 0 8px;
  height: 6px;
  background: #d0e8fc;
  border-radius: 3px;
  overflow: hidden;
}

.dr-region-bar { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--primary), #34b4f4); }

.dr-region-pct { font-weight: 700; color: var(--primary); min-width: 32px; text-align: right; }

/* ── Tables ── */
.dr-table-wrap { overflow-x: auto; }

.dr-card-body::-webkit-scrollbar { width: 6px; }
.dr-card-body::-webkit-scrollbar-track { background: #f1f5f9; border-radius: 3px; }
.dr-card-body::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }
.dr-card-body::-webkit-scrollbar-thumb:hover { background: #94a3b8; }



.daily-report-page table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  max-width: none;
}

.daily-report-page thead th {
  text-align: left;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.daily-report-page tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.12s;
}

.daily-report-page tbody tr:last-child { border-bottom: none; }
.daily-report-page tbody tr:hover { background: #f8fafc; }

.daily-report-page tbody td { padding: 9px 12px; color: var(--text-primary); }

.dr-rank-badge {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  background: var(--bg);
  color: var(--text-muted);
}

.dr-rank-badge.dr-top { background: var(--primary); color: white; }

.dr-change-pos { color: var(--green); font-weight: 600; }

/* ── Institution Type (L2 two-level) ── */
.dr-l2-table { width: 100%; border-collapse: collapse; font-size: 13px; }

.dr-l2-table thead th {
  background: var(--primary-xlight);
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 12px;
  text-align: left;
  padding: 8px 10px;
  border-bottom: 2px solid #d0e8fc;
  white-space: nowrap;
}

.dr-l2-table thead th.dr-col-bid,
.dr-l2-table thead th.dr-col-win,
.dr-l2-table thead th.dr-col-cancel,
.dr-l2-table thead th.dr-col-record,
.dr-l2-table thead th.dr-col-other { text-align: right; }

.dr-l2-table tbody tr:nth-child(odd) { background: #fafbfc; }
.dr-l2-table tbody tr:hover { background: var(--primary-xlight); }

.dr-l2-table .dr-l1-name {
  background: #f1f5fb !important;
  color: var(--primary-dark);
  font-size: 13px;
  text-align: center;
  vertical-align: middle !important;
  border-right: 2px solid #d0e8fc !important;
  width: 135px;
  letter-spacing: 0.5px;
}

.dr-l2-table .dr-l2-name {
  padding-left: 18px !important;
  color: var(--text-primary);
  position: relative;
}

.dr-l2-table .dr-l2-name::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 50%;
  width: 6px;
  height: 1px;
  background: #94a3b8;
}

.dr-l2-table .dr-num-cell,
.dr-l2-table .dr-col-bid,
.dr-l2-table .dr-col-win,
.dr-l2-table .dr-col-cancel,
.dr-l2-table .dr-col-record,
.dr-l2-table .dr-col-other,
.dr-l2-table .dr-pct-cell {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.dr-l2-table tbody td {
  padding: 7px 10px;
  border-bottom: 1px solid #eef2f7;
  vertical-align: middle;
}

.dr-l2-scroll { max-height: 420px; overflow-y: auto; }
.dr-l2-scroll::-webkit-scrollbar { width: 6px; }
.dr-l2-scroll::-webkit-scrollbar-track { background: #f1f5f9; border-radius: 3px; }
.dr-l2-scroll::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }
.dr-l2-scroll::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

.dr-l2-table tr.dr-new-group td { border-top: 2px solid #D3E7FC; }
.dr-l2-table tr.dr-new-group .dr-l1-name { color: var(--primary-dark); font-weight: 700; }

.dr-bar-cell {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dr-bar-cell-bar {
  height: 5px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--primary), #34b4f4);
}

/* ── Keywords ── */
.dr-keyword-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dr-kw-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  background: var(--primary-xlight);
  border: 1px solid #d0e8fc;
  color: var(--text-primary);
  transition: all 0.15s;
}

.dr-kw-tag:hover { background: var(--primary); color: white; border-color: var(--primary); }
.dr-kw-tag:hover .dr-cnt { color: rgba(255,255,255,0.8); }

.dr-kw-tag .dr-cnt { font-weight: 700; color: var(--primary); }
.dr-kw-tag:hover .dr-cnt { color: rgba(255,255,255,0.8); }

.dr-kw-tag.dr-top-kw {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.dr-kw-tag.dr-top-kw .dr-cnt { color: rgba(255,255,255,0.85); }
.dr-kw-tag.dr-top-kw:hover { background: var(--primary-dark); }

.dr-kw-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

/* ── Cross Table ── */
.dr-cross-table { width: 100%; border-collapse: collapse; font-size: 14px; }

.dr-cross-table thead th {
  padding: 6px 8px;
  font-size: 12px;
  background: var(--primary-xlight);
  border: 1px solid #d0e8fc;
  white-space: nowrap;
  color: var(--text-secondary);
}

.dr-cross-table thead th:first-child {
  background: var(--bg);
  color: var(--text-muted);
}

.dr-cross-table tbody td {
  padding: 6px 8px;
  border: 1px solid var(--border);
  text-align: center;
}

.dr-cross-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  background: var(--bg);
  color: var(--text-secondary);
  white-space: nowrap;
}

.dr-cross-table tbody tr:hover td:first-child { background: #eef5fd; }

/* ── Project Detail Search ── */
.dr-search-bar {
  display: flex;
  gap: 10px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--primary-xlight);
}

.dr-search-input-wrap {
  position: relative;
  flex: 1;
}

.dr-search-input-wrap svg {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 13px;
  height: 13px;
  stroke: var(--text-muted);
  fill: none;
}

.dr-search-input {
  width: 100%;
  padding: 7px 12px 7px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-family: inherit;
  background: white;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.15s;
}

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

.dr-search-select {
  padding: 7px 28px 7px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-family: inherit;
  background: white;
  color: var(--text-primary);
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
}

.dr-search-select:focus { border-color: var(--primary); }

.dr-search-count {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  padding: 0 4px;
}

.dr-search-count .dr-n { color: var(--primary); font-weight: 700; }

/* ── Type Badge ── */
.dr-type-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
}

.dr-type-badge.dr-bid { background: #fef9c3; color: #92400e; }
.dr-type-badge.dr-win { background: #dcfce7; color: #15803d; }
.dr-type-badge.dr-cancel { background: #fee2e2; color: #dc2626; }
.dr-type-badge.dr-other { background: #f1f5f9; color: #64748b; }

.dr-col-bid { color: #d97706; font-weight: 600; }
.dr-col-win { color: #15803d; font-weight: 600; }
.dr-col-cancel { color: #dc2626; font-weight: 600; }
.dr-col-record { color: #7c3aed; font-weight: 600; }
.dr-col-other { color: #64748b; }

/* ── Footer ── */
.daily-report-page .dr-footer {
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
  padding: 16px;
}

.dr-hidden { display: none !important; }

.dr-note {
  font-size: 12px;
  color: var(--text-muted);
}

/* ── Mobile QR Entry ── */
.dr-mobile-qr-btn {
  position: fixed;
  right: 20px;
  bottom: 80px;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary) 0%, #34b4f4 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(7, 128, 229, 0.35), 0 2px 6px rgba(0,0,0,0.1);
  z-index: 200;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s;
  animation: floatPulse 3s ease-in-out infinite;
}

.dr-mobile-qr-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 28px rgba(7, 128, 229, 0.5), 0 4px 10px rgba(0,0,0,0.1);
  animation: none;
}

.dr-mobile-qr-btn:active {
  transform: scale(0.96);
}

.dr-mobile-qr-btn svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.dr-mobile-qr-btn span {
  display: none;
}

@keyframes floatPulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 4px 16px rgba(7, 128, 229, 0.35), 0 2px 6px rgba(0,0,0,0.1); }
  50%       { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(7, 128, 229, 0.45), 0 4px 10px rgba(0,0,0,0.1); }
}

/* QR Popup Card */
.dr-qr-popup {
  position: fixed;
  right: 20px;
  bottom: 145px;
  background: white;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.14);
  z-index: 201;
  display: none;
  flex-direction: column;
  align-items: center;
  min-width: 200px;
  border: 1px solid var(--border);
  animation: slideUp 0.25s ease;
}

.dr-qr-popup.dr-show { display: flex; }

.dr-qr-code-box {
  width: 160px;
  height: 160px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.dr-qr-code-box img,
.dr-qr-code-box canvas {
  display: block;
  width: 160px !important;
  height: 160px !important;
}

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

.dr-qr-popup::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 24px;
  width: 14px;
  height: 14px;
  background: white;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transform: rotate(45deg);
  z-index: -1;
}

.dr-qr-popup-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  text-align: center;
}

.dr-qr-popup-sub {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 10px;
  text-align: center;
  line-height: 1.5;
}

.dr-qr-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1;
  transition: background 0.15s;
}

.dr-qr-popup-close:hover { background: var(--border); }


/* ── dr- 布局隔离：覆盖 bootstrap，不触碰 zyt-header ── */
.daily-report-page .dr-row {
  display: grid;
  gap: 14px;
  margin-left: 0;
  margin-right: 0;
}
.daily-report-page .dr-row::before,
.daily-report-page .dr-row::after {
  display: none !important;
  content: none !important;
}
.daily-report-page .dr-row-2 { grid-template-columns: 1fr 1fr; }
.daily-report-page .dr-row-1-2 { grid-template-columns: 1fr 360px; }
.daily-report-page .dr-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 16px;
}
.daily-report-page .dr-card-header {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
}
.daily-report-page .dr-card-body { padding: 16px 18px; }
.daily-report-page .dr-main {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 28px;
}
.daily-report-page .dr-logo {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary), #34b4f4);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0;
  float: none;
  position: static;
}
