/* Basisstijl voor de roterende tekst */
.tekst-rotator-display {
    /* Gebruik transition voor soepele fade-effecten */
    transition: opacity 0.5s ease-in-out;
color: #fff;
    /* Zorg dat het element zichtbaar is als het actief is */
    opacity: 1; /* Standaard zichtbaar, JS manipuleert dit */
}

/* BELANGRIJK: Optionele CSS voor thema's die initial content tonen.
   Voeg dit toe aan je thema's custom CSS of stijlbestand indien:
   1. Je wilt dat de oorspronkelijke tekst van #site-description verborgen is
      voordat de rotator begint.
   2. Je thema direct HTML in #site-description plaatst.

   Als je thema #site-description al leeg laat of dynamisch vult, is dit niet nodig.
*/
/*
#site-description {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
*/
