/* Stijlen voor Interactieve Verhalen Plugin */

/* De lijst met hoofdstukken op de hoofdpagina van het verhaal */
.iv-chapter-list {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.iv-chapter-list ul {
    list-style-type: disc;
    margin-left: 20px;
}

.iv-chapter-list li {
    margin-bottom: 10px;
}

/* De keuzeknoppen onderaan een hoofdstuk */
.iv-keuze-knop {
    display: inline-block;
    padding: 10px 18px;
    margin: 5px;
    background-color: #0073aa; /* Standaard WordPress blauw */
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.2s;
}

.iv-keuze-knop:hover {
    background-color: #005177;
    color: #ffffff;
}

/* Stijl voor de [iv_verhaal] shortcode embed */
.iv-verhaal-embed {
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 20px;
    margin: 20px 0;
    background-color: #f9f9f9;
}

.iv-verhaal-embed h3 {
    margin-top: 0;
}

.iv-verhaal-embed h3 a {
    text-decoration: none;
    color: #333;
}

.iv-verhaal-embed p {
    font-size: 0.9em;
    color: #555;
    margin-bottom: 15px;
}

/* Hergebruik de knop-stijl voor de 'Start Verhaal' link */
.iv-verhaal-embed .iv-keuze-knop {
    font-size: 0.9em;
}

/* Stijlen voor v1.4 - Laatst gelezen hoofdstuk */
.iv-chapter-list li.iv-chapter-item {
    /* Zorg voor een mooie overgang en padding */
    padding: 5px 10px;
    border-radius: 4px;
    margin-left: -10px; /* Compenseer de nieuwe padding */
    transition: background-color 0.3s;
}

/* Stijl voor de link in de lijst + Verwijder onderlijning (Twenty Seventeen fix) */
/* Door '.entry-content' toe te voegen, wordt deze regel specifieker dan het thema */
.entry-content .iv-chapter-list li.iv-chapter-item a {
    display: inline-block;
    width: 100%;
    color: #0073aa; /* Standaard WP link kleur */
    text-decoration: none;
    border-bottom: none; /* Verwijder border-gebaseerde onderlijning */
    box-shadow: none;    /* Verwijder shadow-gebaseerde onderlijning */
}

/* Hover (muis erover) staat voor de link */
.entry-content .iv-chapter-list li.iv-chapter-item a:hover {
    text-decoration: none;
    border-bottom: none;
    box-shadow: none;
}