.nieuws-container {
    padding: 20px;
    font-size: 11pt;
    line-height: 1.5;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Source Code Pro', monospace;
}

.nieuws-container h1 {
    font-size: 2.4rem;
    color: #007acc;
    margin-top: 0.2em;
    margin-bottom: 0.5em;
}

.nieuws-refresh-knop {
    padding: 0.5rem 1rem;
    margin: 10px 0;
    background-color: #007acc;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.nieuws-refresh-knop:hover {
    background-color: #005fa3;
    /* donkerdere variant */
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.nieuws-refresh-knop:active {
    transform: translateY(0);
    box-shadow: none;
}

.nieuws-source {
    display: inline-block;
    background-color: #f0f0f0;
    color: #555;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 6px;
    margin-left: 8px;
    border-radius: 4px;
    vertical-align: middle;
}

.nieuws-item {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
    position: relative;
}

.nieuws-item:last-child {
    border-bottom: none;
}

.nieuws-item h2 {
    font-size: 1.6rem;
    color: #007acc;
    margin: 0;
}

.nieuws-item h2 a {
    color: #007acc;
    text-decoration: none !important;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nieuws-item h2 a:hover {
    color: #004b85;
    text-decoration: none !important;
    cursor: pointer;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.nieuws-item a:not(.nieuws-summary-link):hover {
    text-decoration: underline;
    color: #004b85;
}

.nieuws-summary-link {
    display: block;
    margin-top: 0.5em;
    line-height: 1.4;
    font-size: 0.9rem;
    color: #555555;
    background-color: #f9f9f9;
    border-left: 4px solid #007acc;
    padding: 12px 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease, filter 0.3s ease;
    text-decoration: none !important;
}

.nieuws-summary-link:hover {
    background-color: #e2f0fb;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transform: scale(1.02);
    filter: brightness(1.03);
    text-decoration: none !important;
}

.nieuws-item p {
    margin: 0.5em 0;
    font-size: 1rem;
    color: #222;
}

.nieuws-date {
    font-weight: bold;
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 0.3em;
}

.nieuws-emoji {
    margin-right: 0.5em;
}

.nieuws-container .nieuws-error {
    border: 1px solid #ff4d4d;
    background-color: #ffe6e6;
    padding: 15px;
    margin: 15px 0;
    border-radius: 6px;
    color: #b30000;
    font-weight: 600;
}

.nieuws-container .nieuws-error ul {
    margin: 10px 0 0 20px;
    padding: 0;
    list-style-type: disc;
}

.nieuws-container .nieuws-error ul li {
    margin-bottom: 5px;
}