.gouwestad-datum {
    font-size: 1.4em;
    font-weight: bold;
    margin: 1em 0 0.3em 0;
}

/* Programmatabel */
.gouwestad-programma {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2em;
}

.gouwestad-programma th,
.gouwestad-programma td {
    padding: 0.5em;
    border-bottom: 1px solid #ddd;
    text-align: left;
    vertical-align: top;
    word-break: break-word;
}

/* Desktop kolombreedtes */
@media screen and (min-width: 769px) {
    .gouwestad-programma {
        table-layout: fixed;
    }

    .gouwestad-programma th:nth-child(1),
    .gouwestad-programma td:nth-child(1) {
        width: 12%;
    }

    .gouwestad-programma th:nth-child(2),
    .gouwestad-programma td:nth-child(2) {
        width: 20%;
    }

    .gouwestad-programma th:nth-child(3),
    .gouwestad-programma td:nth-child(3) {
        width: 18%;
    }

    .gouwestad-programma th:nth-child(4),
    .gouwestad-programma td:nth-child(4) {
        width: 50%;
    }
}

/* Mobiele weergave */
@media screen and (max-width: 768px) {
    .gouwestad-programma thead {
        display: none;
    }

    .gouwestad-programma tr {
        display: block;
        margin-bottom: 1.5em;
        border-bottom: 2px solid #ccc;
        padding-bottom: 0.5em;
    }

    .gouwestad-programma td {
        display: block;
        text-align: left;
        position: relative;
        padding-left: 40%;
        border-bottom: none;
    }

    .gouwestad-programma td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        top: 0;
        width: 35%;
        padding-left: 0.5em;
        font-weight: bold;
        white-space: nowrap;
    }
}

/* Podcast toggle knop */
.gouwestad-programma-toggle {
    cursor: pointer;
    font-weight: bold;
    margin-right: 8px;
    user-select: none;
    display: inline-block;
    transition: transform 0.3s ease;
}

.gouwestad-programma-toggle.open {
    transform: rotate(45deg);
}

/* Podcastlijst */
.gouwestad-podcast-lijst {
    display: none;
    margin-left: 20px;
    margin-bottom: 15px;
    border-left: 2px solid #ccc;
    padding: 10px;
    box-sizing: border-box;
}

.gouwestad-podcast-lijst.open {
    display: block;
}

/* Podcast item */
.gouwestad-podcast-item {
    margin-bottom: 1em;
    padding: 0.5em;
    border-bottom: 1px solid #ccc;
    box-sizing: border-box;
    overflow: visible; /* zorg dat grotere iconen niet worden bijgesneden */
    clear: both;
}

.gouwestad-podcast-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    float: left;
    margin-right: 10px;
    border-radius: 6px;
}

.gouwestad-podcast-item::after {
    content: "";
    display: table;
    clear: both;
}

/* "Toon meer afleveringen"-knop */
.gouwestad-load-more {
    background: #eee;
    border: 1px solid #ccc;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    display: block;
    margin: 10px 0;
    clear: both;
}

.gouwestad-podcast-logo {
    width: 80px !important;
    height: auto !important;
    max-height: 80px !important;
    object-fit: contain;
    border-radius: 6px;
    float: left;
    margin-right: 10px;
}

.gouwestad-podcast-item img.emoji {
    display: inline !important;
    height: 1em !important;
    width: 1em !important;
    vertical-align: baseline !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
}

/* Content wrapper rechts van het logo: houdt uitlijning consistent */
.gouwestad-podcast-content {
    display: block;
    margin-left: 100px; /* laat ruimte voor het 80px logo + padding */
    min-height: 80px; /* zorg dat het overeenkomt met logo hoogte */
}

/* Specifieke styling voor het share/download icoon */
.gouwestad-share-icon-img {
    width: 56px !important;
    height: 56px !important;
    object-fit: contain !important;
    display: inline-block !important;
    vertical-align: middle !important;
}

.gouwestad-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #333;
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 9999;
    pointer-events: none;
}

.gouwestad-toast.zichtbaar {
    opacity: 0.95;
}

/* Forceer deel/ share icoon naar 56x56 px
   Deze generieke selectors proberen de meest gebruikte class-namen en elementen
   (img, svg, icon fonts) te targeten. Gebruik !important om inline of
   plugin-stijlen te overschrijven waar nodig. */
.gouwestad-share,
.gouwestad-deel,
.gouwestad-share-icon,
.gouwestad .share-icon,
.gouwestad-programma .share-icon {
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
    min-height: 56px !important;
    display: inline-block !important;
    vertical-align: middle !important;
}

.gouwestad-share img,
.gouwestad-share-icon img,
.gouwestad-deel img,
.gouwestad .share-icon img {
    width: 56px !important;
    height: 56px !important;
    object-fit: contain !important;
}

.gouwestad-share svg,
.gouwestad-share-icon svg,
.gouwestad-deel svg,
.gouwestad .share-icon svg {
    width: 56px !important;
    height: 56px !important;
}

.gouwestad-share i,
.gouwestad-share-icon i,
.gouwestad-deel i {
    font-size: 56px !important;
    line-height: 56px !important;
}

/* Kleine extra: als het icoon binnen een knop zit, maak de knop ruim genoeg */
.gouwestad-share-button,
.gouwestad-deel-button,
.gouwestad .share-button {
    min-width: 56px !important;
    min-height: 56px !important;
    padding: 0.25rem !important;
}

/* Zorg dat het delen-icoon altijd volledig zichtbaar is en de layout niet breekt */
.gouwestad-programma-item a.copy-link img {
    width: auto !important;      /* behoud originele verhouding */
    height: 16px !important;     /* pas aan op gewenste grootte (vroeger 16px) */
    max-width: 100%;              /* voorkom dat het buiten container gaat */
    display: inline-block;
    vertical-align: middle;       /* uitlijnen met tekst */
    object-fit: contain;          /* hele icoon zichtbaar */
}


