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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: #f5f7fa;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 导航栏 */
.navbar {
  background: linear-gradient(90deg, #020617 0%, #0a3a8a 35%, #0d5bc5 50%, #0a3a8a 65%, #020617 100%);
  color: white;
  padding: 15px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .logo {
  font-size: 20px; /* 文字大小保持不变 */
  font-weight: bold;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: -20px; /* 抵消容器左 padding，让 logo 顶到导航栏最左侧 */
}

.navbar .navbar-logo {
  height: 51px; /* 原 34px 放大 50%，修改这个数值即可调整导航栏 logo 大小 */
  width: auto;
  border-radius: 6px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 4px;
  transition: background 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255,255,255,0.1);
}

/* 主内容区 */
.main-content {
  padding: 30px 0;
  min-height: calc(100vh - 200px);
}

h1 {
  font-size: 28px;
  margin-bottom: 25px;
  color: #2c3e50;
}

h2 {
  font-size: 22px;
  margin: 25px 0 15px;
  color: #34495e;
}

/* 统计卡片 */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.stat-card {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fd 100%);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(10,58,138,0.08);
  border-top: 3px solid #0d5bc5;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 22px rgba(10,58,138,0.18);
}

.stat-number {
  font-size: 42px;
  font-weight: bold;
  color: #0d5bc5;
  margin-bottom: 8px;
}

.stat-card.stat-success { border-top-color: #27ae60; }
.stat-card.stat-success .stat-number { color: #27ae60; }
.stat-card.stat-failed { border-top-color: #e74c3c; }
.stat-card.stat-failed .stat-number { color: #e74c3c; }
.stat-card.stat-pending { border-top-color: #f39c12; }
.stat-card.stat-pending .stat-number { color: #f39c12; }

.stat-number.small { font-size: 28px; }

.stat-label {
  font-size: 14px;
  color: #7f8c8d;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* 快捷操作 */
.quick-actions {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(10,58,138,0.08);
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.action-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 16px;
  background: #0b1120;
  border-radius: 12px;
  text-decoration: none;
  color: #e6f0fb;
  transition: all 0.3s;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}

.action-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0a3a8a 0%, #0d5bc5 100%);
}

.action-card.success::before {
  background: linear-gradient(90deg, #1e8e5a 0%, #2ecc71 100%);
}

.action-card.warning::before {
  background: linear-gradient(90deg, #d68910 0%, #f39c12 100%);
}

.action-card.danger::before {
  background: linear-gradient(90deg, #c0392b 0%, #e74c3c 100%);
}

.action-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.25);
  border-color: rgba(255,255,255,0.15);
}

.action-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  color: #e6f0fb;
  margin-bottom: 12px;
  transition: all 0.3s;
}

.action-card.success .action-icon { background: rgba(39,174,96,0.15); color: #4cd97b; }
.action-card.warning .action-icon { background: rgba(243,156,18,0.15); color: #f5b041; }
.action-card.danger .action-icon { background: rgba(231,76,60,0.15); color: #ff6b6b; }

.action-card:hover .action-icon {
  transform: scale(1.08);
}

.action-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.action-text {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}

/* 筛选栏 */
.filter-bar {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.filter-bar input,
.filter-bar select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.filter-bar input[type="text"] {
  flex: 1;
  min-width: 200px;
}

/* 按钮 */
.btn {
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  box-shadow: 0 2px 6px rgba(10,58,138,0.15);
}

.btn:hover {
  box-shadow: 0 4px 10px rgba(10,58,138,0.22);
}

.btn-primary {
  background: linear-gradient(90deg, #0a3a8a 0%, #0d5bc5 100%);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #082d6b 0%, #0a3a8a 100%);
}

.btn-secondary {
  background: linear-gradient(90deg, #475569 0%, #64748b 100%);
  color: white;
}

.btn-secondary:hover {
  background: linear-gradient(90deg, #37475a 0%, #475569 100%);
}

.btn-success {
  background: linear-gradient(90deg, #1e8e5a 0%, #2ecc71 100%);
  color: white;
}

.btn-success:hover {
  background: linear-gradient(90deg, #17724a 0%, #27ae60 100%);
}

.btn-danger {
  background: linear-gradient(90deg, #c0392b 0%, #e74c3c 100%);
  color: white;
  border: none;
}

.btn-danger:hover:not(:disabled) {
  background: linear-gradient(90deg, #a03024 0%, #c0392b 100%);
}

.btn-danger:disabled {
  background: #f5f5f5;
  color: #bbb;
  border-color: #ddd;
  cursor: not-allowed;
}

.btn-small {
  display: inline-block;
  padding: 4px 8px;
  font-size: 12px;
  background: #ecf0f1;
  color: #2c3e50;
  text-decoration: none;
  border-radius: 3px;
  margin-right: 5px;
  white-space: nowrap;
}

.btn-small:hover {
  background: #d7e0ea;
}

.btn-small-danger {
  background: #fee;
  color: #e74c3c;
  border: 1px solid #f5b7b1;
}

.btn-small-danger:hover {
  background: #e74c3c;
  color: white;
}

.btn-small-restore {
  background: #e8f5e9;
  color: #27ae60;
  border: 1px solid #a5d6a7;
}

.btn-small-restore:hover {
  background: #27ae60;
  color: white;
}

.btn-edit {
  background: #e6f0fb;
  color: #0d5bc5;
  border: 1px solid #b3d1f0;
}

.btn-edit:hover {
  background: #0d5bc5;
  color: white;
}

.btn-logout {
  background: rgba(255,255,255,0.15);
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 14px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s;
}

.btn-logout:hover {
  background: rgba(231,76,60,0.8);
  border-color: #e74c3c;
}

/* 表格操作区 */
.table-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

/* 数据表格 */
.data-table {
  width: 100%;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  table-layout: fixed;
  border-collapse: collapse;
}

.data-table thead {
  background: linear-gradient(90deg, #0a3a8a 0%, #0d5bc5 100%);
  color: white;
}

.data-table th,
.data-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #ecf0f1;
}

.data-table th {
  text-align: center;
  vertical-align: middle;
}

.data-table td:nth-child(1),
.data-table td:nth-child(2),
.data-table td:nth-child(4),
.data-table td:nth-child(6),
.data-table td:nth-child(7),
.data-table td:nth-child(8) {
  text-align: center;
  vertical-align: middle;
}

.data-table th:nth-child(1),
.data-table td:nth-child(1) { width: 5%; }

.data-table th:nth-child(2),
.data-table td:nth-child(2) { width: 42%; }

.data-table th:nth-child(3),
.data-table td:nth-child(3) { width: 10%; }

.data-table th:nth-child(4),
.data-table td:nth-child(4) {
  width: 14%;
  word-break: break-all;
}

.data-table th:nth-child(5),
.data-table td:nth-child(5) {
  width: 9%;
  white-space: nowrap;
}

.data-table th:nth-child(6),
.data-table td:nth-child(6) { width: 6%; }

.data-table th:nth-child(7),
.data-table td:nth-child(7) { width: 14%; }

/* 文章列表专用列宽（含批量选择列、抓取时间列） */
.articles-table th:nth-child(1),
.articles-table td:nth-child(1) { width: 4%; }

.articles-table th:nth-child(2),
.articles-table td:nth-child(2) { width: 5%; }

.articles-table th:nth-child(3),
.articles-table td:nth-child(3) { width: 25%; }

.articles-table th:nth-child(4),
.articles-table td:nth-child(4) { width: 10%; }

.articles-table th:nth-child(5),
.articles-table td:nth-child(5) {
  width: 15%;
  word-break: break-all;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

.dept-cell {
  word-break: break-all;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  max-width: 100%;
}

.articles-table th:nth-child(6),
.articles-table td:nth-child(6) {
  width: 9%;
  white-space: nowrap;
}

.articles-table th:nth-child(7),
.articles-table td:nth-child(7) {
  width: 12%;
  white-space: nowrap;
}

.articles-table th:nth-child(8),
.articles-table td:nth-child(8) { width: 6%; }

.articles-table th:nth-child(9),
.articles-table td:nth-child(9) { width: 12%; }

.articles-table .select-col {
  text-align: center;
  vertical-align: middle;
}

.articles-table .select-col input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  margin: 0;
}

/* 表格排序表头 */
.data-table th.sortable {
  padding: 0;
}
.data-table th.sortable a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  color: white;
  text-decoration: none;
  white-space: nowrap;
}
.data-table th.sortable a:hover {
  background: rgba(255,255,255,0.1);
}
.sort-arrows {
  display: inline-flex;
  flex-direction: column;
  line-height: 0.6;
  font-size: 10px;
  color: rgba(255,255,255,0.4);
}
.sort-arrow {
  display: block;
}
.sort-arrow.active {
  color: #f1c40f;
}

.data-table tbody tr:hover {
  background: #f8f9fa;
}

/* 关键词列表专用列宽：创建时间和操作列避免被遮挡 */
.keywords-table th:nth-child(5),
.keywords-table td:nth-child(5) {
  width: 18%;
  white-space: nowrap;
  text-align: center;
}

.keywords-table th:nth-child(6),
.keywords-table td:nth-child(6) {
  width: 20%;
  text-align: center;
}

.keywords-table td:nth-child(6) form {
  display: inline-block;
  margin: 0 2px;
}

.keywords-table td:nth-child(6) button {
  white-space: nowrap;
}

.article-link {
  color: #2c3e50;
  text-decoration: none;
  font-weight: 500;
}

.article-link:hover {
  color: #3498db;
  text-decoration: underline;
}

.empty-state {
  text-align: center;
  color: #95a5a6;
  padding: 40px !important;
}

/* 徽章 */
.badge {
  display: inline-block;
  padding: 4px 8px;
  background: #ecf0f1;
  color: #2c3e50;
  border-radius: 3px;
  font-size: 12px;
}

.badge-danger {
  background: #e74c3c;
  color: white;
}

.badge-region {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.status-success {
  background: #d5f4e6;
  color: #27ae60;
}

.status-failed {
  background: #fadbd8;
  color: #e74c3c;
}

.status-pending {
  background: #fdebd0;
  color: #f39c12;
}

.status-downloading {
  background: #d6eaf8;
  color: #2980b9;
}

/* 命中关键词提示 */
.matched-keyword {
  margin-top: 4px;
  font-size: 11px;
  color: #e67e22;
  background: #fef5e7;
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 关键词库页面 */
.keyword-word {
  font-weight: 600;
  color: #2c3e50;
  background: #eef4fb;
  padding: 2px 10px;
  border-radius: 4px;
}

.page-desc {
  color: #7f8c8d;
  font-size: 14px;
  margin: 0 0 20px;
  line-height: 1.6;
}

/* 分页 */
.pagination {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 30px;
}

.pagination a {
  padding: 8px 12px;
  background: white;
  color: #2c3e50;
  text-decoration: none;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(10,58,138,0.08);
  border: 1px solid #e8eef6;
  transition: all 0.3s;
  font-weight: 500;
  min-width: 36px;
  text-align: center;
}

.pagination a:hover {
  background: linear-gradient(135deg, #0a3a8a, #0d5bc5);
  color: white;
  border-color: #0a3a8a;
  box-shadow: 0 4px 10px rgba(10,58,138,0.25);
  transform: translateY(-1px);
}

.pagination a.current {
  background: linear-gradient(135deg, #0a3a8a, #0d5bc5);
  color: white;
  border-color: #0a3a8a;
  box-shadow: 0 4px 10px rgba(10,58,138,0.25);
}

.pagination a:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(10,58,138,0.15);
}

.pagination .ellipsis {
  padding: 8px 12px;
  color: #7f8c8d;
}

.page-jump {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 4px;
  color: #2c3e50;
  font-size: 14px;
  white-space: nowrap;
}

.page-jump input {
  width: 50px;
  height: 32px;
  padding: 4px 6px;
  border: 1px solid #d0dced;
  border-radius: 6px;
  font-size: 13px;
  text-align: center;
  box-sizing: border-box;
  transition: all 0.3s;
}

.page-jump .btn {
  height: 32px;
  padding: 0 10px;
  line-height: 32px;
  font-size: 13px;
}

.page-jump input:focus {
  outline: none;
  border-color: #0d5bc5;
  box-shadow: 0 0 0 3px rgba(13,91,197,0.15);
}

/* 文章详情 */
.breadcrumb {
  margin-bottom: 20px;
}

.breadcrumb a {
  color: #3498db;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.article-detail {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.article-detail h1 {
  font-size: 24px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.article-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding: 15px 0;
  border-bottom: 1px solid #ecf0f1;
  margin-bottom: 20px;
  font-size: 14px;
  color: #7f8c8d;
}

.article-actions {
  margin: 20px 0;
}

.article-content {
  margin: 30px 0;
}

.content-wrapper {
  padding: 20px;
  background: #f8f9fa;
  border-radius: 4px;
  line-height: 1.8;
}

.content-wrapper p {
  margin-bottom: 15px;
}

.empty-content {
  text-align: center;
  color: #95a5a6;
  padding: 40px;
}

.article-attachments {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px solid #ecf0f1;
}

.attachment-list {
  list-style: none;
  margin-top: 15px;
}

.attachment-list li {
  padding: 12px;
  background: #f8f9fa;
  border-radius: 4px;
  margin-bottom: 10px;
}

.attachment-link {
  color: #3498db;
  text-decoration: none;
  font-weight: 500;
}

.attachment-link:hover {
  text-decoration: underline;
}

.file-size {
  color: #95a5a6;
  font-size: 12px;
  margin-left: 10px;
}

.attachment-failed {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* 页脚 */
.footer {
  background: linear-gradient(90deg, #020617 0%, #0a3a8a 35%, #0d5bc5 50%, #0a3a8a 65%, #020617 100%);
  color: white;
  padding: 20px 0;
  text-align: center;
  margin-top: 50px;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.25);
}

.footer p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

.footer p a {
  color: #ffffff;
  text-decoration: underline;
}

.footer p a:hover {
  color: #d6e6ff;
}

/* 响应式 */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }
  
  .filter-bar input,
  .filter-bar select {
    width: 100%;
  }
  
  .article-meta {
    flex-direction: column;
    gap: 10px;
  }
}

/* ========== 用户管理与文章录入页面 ========== */

.card {
  background: white;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.card h2 {
  font-size: 18px;
  color: #2c3e50;
  margin-top: 0;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ecf0f1;
}

/* 横排表单 */
.form-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.form-col {
  flex: 1;
  min-width: 240px;
}

.form-col label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: #34495e;
  font-weight: 500;
}

.form-col input,
.form-col select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  box-sizing: border-box;
  transition: border-color 0.3s;
  font-family: inherit;
}

.form-col input:focus,
.form-col select:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52,152,219,0.15);
}

.form-col-btn {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-end;
}

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

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: #34495e;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  box-sizing: border-box;
  transition: border-color 0.3s;
  font-family: inherit;
}

.form-group textarea {
  resize: vertical;
  line-height: 1.7;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52,152,219,0.15);
}

.form-group input[type="file"] {
  padding: 8px;
  background: #fafbfc;
}

.req {
  color: #e74c3c;
}

.form-hint {
  margin-top: 6px;
  font-size: 12px;
  color: #95a5a6;
}

.form-actions {
  margin-top: 25px;
  display: flex;
  gap: 12px;
}

.btn-danger {
  background: linear-gradient(90deg, #c0392b 0%, #e74c3c 100%);
  color: white;
}

.btn-danger:hover {
  background: linear-gradient(90deg, #a03024 0%, #c0392b 100%);
}

.btn-cancel {
  background: #eef2f7;
  color: #475569;
}

.btn-cancel:hover {
  background: #dde4ec;
}

/* 提示消息 */
.success-msg {
  background: #d4efdf;
  color: #1e8449;
  padding: 12px 16px;
  border-radius: 5px;
  font-size: 14px;
  margin-bottom: 20px;
}

.login-error {
  background: #fadbd8;
  color: #e74c3c;
  padding: 12px 16px;
  border-radius: 5px;
  font-size: 14px;
  margin-bottom: 20px;
}

/* 用户徽章 */
.badge-admin {
  background: #3498db;
  color: white;
}

.badge-me {
  background: #d4efdf;
  color: #1e8449;
  margin-left: 6px;
}

.text-muted {
  color: #bdc3c7;
}

/* 移动端适配 */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }
}

/* ========== 爬虫日志页 ========== */

.chart-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.chart-tabs .tab {
  padding: 6px 14px;
  border-radius: 5px;
  background: #eef2f7;
  color: #475569;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
}

.chart-tabs .tab:hover,
.chart-tabs .tab.active {
  background: linear-gradient(90deg, #0a3a8a 0%, #0d5bc5 100%);
  color: white;
}

.chart-date-form {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.chart-date-form input[type="date"] {
  padding: 6px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

#crawlChart {
  width: 100%;
  height: 360px;
}

.log-table th,
.log-table td {
  font-size: 13px;
}

/* 覆盖全局 data-table 的 nth-child 列宽，日志表专用 */
.data-table.log-table th:nth-child(1),
.data-table.log-table td:nth-child(1) { width: 4%; text-align: center; }
.data-table.log-table th:nth-child(2),
.data-table.log-table td:nth-child(2) { width: 10%; white-space: nowrap; }
.data-table.log-table th:nth-child(3),
.data-table.log-table td:nth-child(3) { width: 6%; text-align: center; }
.data-table.log-table th:nth-child(4),
.data-table.log-table td:nth-child(4) { width: 24%; word-break: break-all; }
.data-table.log-table th:nth-child(5),
.data-table.log-table td:nth-child(5) { width: 8%; text-align: center; white-space: normal; word-break: break-all; overflow-wrap: break-word; }
.data-table.log-table th:nth-child(6),
.data-table.log-table td:nth-child(6) { width: 10%; word-break: break-all; }
.data-table.log-table th:nth-child(7),
.data-table.log-table td:nth-child(7) { width: 22%; word-break: break-all; }
.data-table.log-table th:nth-child(8),
.data-table.log-table td:nth-child(8) { width: 6%; text-align: center; }
.data-table.log-table th:nth-child(9),
.data-table.log-table td:nth-child(9) { width: 10%; word-break: break-all; }

.log-table .log-url {
  font-size: 12px;
  color: #7f8c8d;
  word-break: break-all;
}

.log-table .dept-sites-list {
  font-size: 11px;
  color: #7f8c8d;
  word-break: break-all;
  max-height: 80px;
  overflow-y: auto;
}

.log-table .policy-yes {
  color: #27ae60;
  font-weight: bold;
}

.log-table .policy-no {
  color: #95a5a6;
}

@media (max-width: 768px) {
  #crawlChart {
    height: 260px;
  }
}
