/* ADS CSS */

.xmlivecambox1 {
  aspect-ratio: 27 / 10;
  /* Verhoudingen instellen, bijvoorbeeld 16:9 */
  width: 100%;
  /* Breedte aanpassen aan de container */
  max-width: 800px;
  /* Optioneel: maximale breedte */
  padding: 0px;
  position: relative;
  overflow: hidden;
}

.xmlivecambox1 iframe {
  transform: scale(0.8);
  /* Verkleint naar 80% */
  transform-origin: top left;
  /* Zorgt ervoor dat het schalen vanaf de linkerbovenhoek gebeurt */
  width: 125%;
  /* Houdt rekening met de verkleining om te voorkomen dat de iframe inhoud afgesneden wordt */
  height: 125%;
  border: 0;
}

.sidebar-content h2 {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 10px;
  border-bottom: 1px solid #CCC;
  color: #555;
}

/*AANRADERS*/
.recommendations {
  max-width: 100%;
  margin: 20px 0;
  padding: 0;
}

.recommendation {
  margin-bottom: 15px;
}

.recommendation a {
  font-size: 16px;
  color: #800000;  /* Donkerrood in plaats van blauw */
  line-height: 0.9rem;
  text-decoration: none;
  font-weight: bold;
}

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

.recommendation p {
  font-size: 13px;
  color: #534c5d;
  margin-top: 0px;
  line-height: 1rem;
}

.right-infoblock {
  margin: 34px 10px;
}

.right-adblock {
  padding: 0 10px;
  text-align: center;
  margin: auto;
  display: block;
}

/*TOPLIST*/
.toplist {
  font-size: 0.9em;
  /* Verkleint de tekst in de toplijst */
}

.toplist ol {
  list-style: decimal;
  /* Genummerde lijst */
  margin: 0;
  padding-left: 20px;
  /* Zorgt voor nette uitlijning van de nummers */
}

.toplist li {
  margin-bottom: 2px;
  /* Optionele ruimte tussen de lijstitems */
}

.toplist a {
  color: #800000;  /* Donkerrood in plaats van blauw */
}