body {
  background: #0b0f12;
  color: #e6f6ea;
  font-family: Inter, -apple-system, sans-serif;
  margin: 40px;
}

.report-container {
  max-width: 900px;
  margin: auto;
}

.report-title {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 24px;
  text-align: left;
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-size: 15px;
}

.table th {
  text-align: left;
  padding: 8px 6px;
  color: #8aa39b;
  border-bottom: 1px solid #1e2429;
}

.table td {
  padding: 8px 6px;
  border-bottom: 1px solid #1e2429;
}

.green { color: #39FF14; }
.red { color: #ff4d4d; }

.summary-box {
  margin-top: 20px;
  padding: 14px;
  background: #12171b;
  border-radius: 12px;
  border: 1px solid #1e2429;
  font-size: 16px;
  line-height: 1.5;
}

.actions {
  margin-top: 20px;
  text-align: right;
}

.btn {
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid #1e2429;
  font-weight: 600;
  cursor: pointer;
}

.btn.primary {
  background: #39FF14;
  color: #0b0f12;
}

/* При печати → убираем тёмный фон, делаем PDF белым */
@media print {
  body {
    background: #fff;
    color: #000;
    margin: 10px;
  }

  .summary-box {
    background: #fff;
    border: 1px solid #ccc;
    color: #000;
  }

  .btn, .actions {
    display: none;
  }
}
.report-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.back-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #12171b;
  border: 1px solid #1e2429;
  color: #e6f6ea;
  font-size: 20px;
  cursor: pointer;
  text-decoration: none;
  transition: .15s ease;
}

.back-btn:hover {
  background: #1a2126;
  transform: translateX(-2px);
}
