.container {
    max-width: 500px;
    margin: 40px auto;
    text-align: center;
}

.page-title {
    font-family: 'arial', sans-serif;
    font-weight: 300;
    font-size: 24px;
    text-align: center;
    color: #66b2ff;
    margin-bottom: 5px;
}

.journal-date {
    font-size: 12px;
    color: #444;
    margin-bottom: 11px;
}

.date-border {
    padding: 4px 12px;
    border-radius: 3px;
}

.date-border-past-or-today {
    border: 2px solid #ddd;
}

.date-border-future {
    border: 2px dotted #66b2ff;
}

.entry-title {
    font-family: 'arial', sans-serif;
    font-size: 21px;
    font-weight: bold;
    margin-bottom: 20px;
}

.entry-img { /* We willen de image bij breedbeeld max 200 hoog, vierkanter of zelfs staan: 300 hoog */
    /* Daarvoor is onderstaande css nodig, en ook wat javascript (zie onderaan  ) */
    display: block;
    margin: 0 auto 20px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
    width: auto; /* Houd de originele aspect-ratio */
    max-width: 100%; /* Voorkomt dat de afbeelding uit de container groeit */
}

/* Standaard hoogte op 200px, wordt later door JS aangepast indien nodig */
.entry-img[data-height="300"] {
    max-height: 300px;
}

.entry-img[data-height="200"] {
    max-height: 200px;
}


.entry-intro {
    font-family: 'arial', sans-serif;
    font-size: 15px;
    font-weight: bold;
    text-align: left;
    margin-bottom: 15px;
}

.entry-text {
    font-family: 'arial', sans-serif;
    font-size: 15px;
    text-align: left;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Navigatieknoppen onderaan op mobiel */
.btn-secondary {
    border: 2px solid gray;
    background-color: white;
    color: gray;
    padding: 8px 12px;
    font-size: 14px;
    transition: all 0.3s ease-in-out;
}

.btn-secondary:hover {
    background-color: #f0f0f0;
    color: black;
}

.eindebereikt {
    color: #777; /* vertelt dat je aan het begin of einde van de blog-serie bent bij de navigatieknoppen */
    font-size: 13px;
}

/* Kleinere navigatieknopjes onderaan op mobiel */
@media (max-width: 500px) {
    .btn-secondary,
    .btn-outline-secondary {  /* Voeg btn-outline-secondary toe */
        padding: 5px 8px;  /* Kleinere knoppen op mobiel */
        font-size: 13px;
    }
    .row.text-center .col {
        padding: 0 3px;  /* Minder ruimte tussen kolommen */
    }
    .eindebereikt {
        font-size: 11px;
    }
}

.hover-black:hover { /* Voor de linkjes onder de buttons: eerste en nieuwste */
    color: #66b2ff !important;
}
