/* ================================
   INFO CONTAINER (hoofdomslag)
   ================================ */
.info-container {
    width: 95%;
    max-width: 1200px;
    margin: 20px auto 0 auto;
    background-color: #fff9cc;   /* jouw lichtgele achtergrond */
	font-family: "Segoe Script", "Palatino Linotype";
    font-size: 0.9rem;
    padding: 10px;
    box-sizing: border-box;
}

/* ================================
   BASISSTIJL VOOR ALLE BALKEN
   ================================ */
.info-balk {
    background-color: #fff9cc;
    text-align: center;
    padding: 8px 4px;
    margin-top: 2px;

    /* Donkere border om elk onderdeel */
    border: 2px solid #4a5a7a;
    border-radius: 6px;

    color: #333;
    box-sizing: border-box;
}

/* Specifieke balken (optioneel, voor herkenning) */
.info-footer { }
.info-terug { }
.info-teller { }

/* ================================
   TITELRIJ (vervangt alle oude rij-klassen)
   ================================ */
.info-titelrij {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
/* Links-rechts variant voor footer en terug*/
.info-titelrij-lr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}


/* ================================
   TEKSTSTIJL (vervangt textstyle2B)
   ================================ */
.info-text {
    font-weight: 600;
    color: #333;
}

/* ================================
   LINKSTIJL (vervangt terugknop)
   ================================ */
.info-link {
    display: inline-block;
    padding: 0px 12px;
    background: #e8dfd0;
    border: 1px solid #b8a98c;
    border-radius: 4px;
    text-decoration: none;
    color: #222;
    font-size: 0.75rem;
}

.info-link:hover {
    background: #d4c4a8;
}