/* Спрощені стилі для сторінки звіту Бориса Карпуса */

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  gap: 15px;
}

.logo-link:hover {
  text-decoration: none;
  color: #fff;
}

/* Основний контейнер звіту */
.report-container {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 2.5rem;
  margin: 2rem 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: left;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  color: #333;
}

/* Заголовки */
.report-title {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial,
    sans-serif;
  font-size: 2.6rem;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 700;
  color: #373b3e;
  border-bottom: 2px solid #373b3e;
  padding-bottom: 1rem;
}

.report-section {
  margin-bottom: 2.5rem;
}

.report-section-title {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial,
    sans-serif;
  font-size: 1.7rem;
  color: #373b3e;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

/* Текстовий контент */
.report-content {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial,
    sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
}

.report-content p {
  margin-bottom: 1.2rem;
}

.report-content strong {
  color: #373b3e;
  font-weight: 600;
}

.report-content ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.report-content li {
  margin-bottom: 0.8rem;
}

.report-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

/* Кнопка PDF */
.pdf-button {
  display: inline-flex;
  align-items: center;
  background-color: #373b3e;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  margin: 2rem 0;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial,
    sans-serif;
}

.pdf-button:hover {
  background-color: #4a4f52;
  color: white;
}

.pdf-button i {
  margin-right: 10px;
  font-size: 1.2rem;
}

/* Кнопка "вгору" */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #373b3e;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 1000;
  text-decoration: none;
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: #4a4f52;
  color: #fff;
}

/* Адаптивність */
@media (max-width: 768px) {
  .report-container {
    padding: 1.5rem;
    margin: 1rem 0;
  }

  .report-title {
    font-size: 1.8rem;
  }

  .report-section-title {
    font-size: 1.5rem;
  }
}
