/* Nyomtatási stílus az index.html-hez */

body {
  color: #000;
  background: #fff;
  font-size: 12pt;
  line-height: 1.5;
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
}

/* Ne jelenjen meg nyomtatáskor */
nav,
footer,
header,
.video-wrapper,
#toggle-theme,
button {
  display: none !important;
}

/* Képkezelés nyomtatáshoz */
img {
  max-width: 100%;
  height: auto;
}

/* Hírszekció és tartalom */
.news-section {
  width: 100%;
  margin: 0;
  padding: 0;
}

.news-item {
  page-break-inside: avoid;
  border: 1px solid #000;
  padding: 10px;
  margin-bottom: 20px;
}

.news-label {
  font-weight: bold;
  font-size: 0.9em;
  display: block;
  margin-bottom: 5px;
}

.news-text h2 {
  font-size: 1.2em;
  margin-top: 0;
}

aside {
  font-style: italic;
  margin-top: 10px;
}

/* Linkek után az URL megjelenítése */
a::after {
  content: " (" attr(href) ")";
  font-size: 0.9em;
}

/* Fejlécek stílusa */
h1, h2, h3 {
  color: #000;
  page-break-after: avoid;
}

/* Oldaltörés kerülése */
article,
section {
  page-break-inside: avoid;
}

/* Ne legyen árnyék, háttérszín vagy egyéb vizuális zavar */
* {
  background: transparent !important;
  box-shadow: none !important;
}

/* Nyomtatási szélcsökkentéshez */
@page {
  margin: 1.5cm;
}
