.liveblog-header{
        border-bottom: 1px solid lightgray;
        margin-bottom: 1rem;
    }

    .liveblog-header-block{
        background-color: #f3f5f7;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        margin-bottom: 40px;
    }

    .liveblog-header h1{
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }

    .liveblog-header p{
        font-size: large;
    }

    .liveblog-post-time{
        margin-bottom: 0.5rem;
        font-size: 0.8rem;
        line-height: 1.5;
        font-weight: bold;
        color: #610FCA;
    }

    .liveblog-tag {
        color: white;
        background: #610FCA;
        padding: 5px 10px;
        font-size: small;
        line-height: 1.4;
        text-transform: uppercase;
        font-weight: bold;
    }

    .liveblog-divider{
        border-bottom: 1px solid lightgray;
        height: 0.05rem;
        padding-left: 20%;
        padding-right: 20%;
        margin-left: auto;
        margin-right: auto;
    }

    .slow-pulse{
        color: white;
        font-size: normal;
        animation: slowPulse 2s ease-in-out infinite;
        margin-right: 5px;
    }

    @keyframes slowPulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.15); }
        100% { transform: scale(1); }
    }

    #new-liveblog-items-btn {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        font-weight: bold;
        padding: 10px 20px;
        z-index: 1000;
        background-color: #c1d101;
        border: 2px solid #c1d101;
        color: #111D13;
        transition: background-color 0.2s, border-color 0.2s;
    }

    #new-liveblog-items-btn:hover {
        background-color: #a4c000; /* iets donkerder */
        border-color: #a4c000;
    }

    /* Badge blijft zoals eerder */
    #new-items-badge {
        position: absolute;
        top: -6px;
        right: -6px;
        width: 20px;
        height: 20px;
        background-color: #E43825;
        color: white;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 0.75rem;
        font-weight: bold;
    }