.backup-page .page-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.backup-page .page-header h2 {
  margin: 0 0 6px 0;
}

.backup-page .page-header p {
  margin: 0;
  color: #666;
}

.notice-box {
  padding: 12px 14px;
  background: #f4f8ff;
  border: 1px solid #d6e7ff;
  border-radius: 10px;
  margin-bottom: 16px;
  color: #1d3f66;
}

.danger-notice-box {
  padding: 12px 14px;
  background: #fff1f1;
  border: 1px solid #ffc7c7;
  border-radius: 10px;
  margin-bottom: 16px;
  color: #9f1d1d;
}

.table-scroll {
  overflow-x: auto;
}

.button-group {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.small-text {
  margin-top: 4px;
  color: #666;
  font-size: 12px;
  word-break: break-all;
}

.error-text {
  margin-top: 4px;
  color: #c62828;
  font-size: 12px;
  word-break: break-word;
}

.empty-box {
  border: 1px dashed #ccd3dd;
  padding: 14px;
  border-radius: 10px;
  color: #666;
  background: #fff;
}

.pill {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.pill.green {
  background: #e8f6ee;
  color: #167a3a;
}

.pill.red {
  background: #fdecec;
  color: #c62828;
}

.pill.blue {
  background: #e8f3ff;
  color: #0b5f99;
}

.pill.orange {
  background: #fff4e2;
  color: #9a5b00;
}

.pill.gray {
  background: #eef2f7;
  color: #475569;
}

.small-btn.restore,
button.restore {
  background: #8a4b00;
  color: #fff;
}

.small-btn.restore:hover,
button.restore:hover {
  background: #6f3d00;
}

@media (max-width: 900px) {
  .backup-page .page-header {
    display: grid;
    grid-template-columns: 1fr;
  }
}
