article {
    margin-bottom: 20px;
}

hr {
    border: none;
    border-top: 1px solid #ccc;
}

/* Scroll-Container für die Artikel-Links */
.scroll-container {
    max-height: 150px; /* Höhe des Scroll-Bereichs */
    overflow-y: auto; /* Vertikales Scrollen aktivieren */
    background-color: #1a1a1a; /* Dunkler Hintergrund */
    border: 1px solid #333; /* Rahmen für bessere Sichtbarkeit */
    padding: 10px;
    border-radius: 5px; /* Abgerundete Ecken */
    color: #f0f0f0; /* Textfarbe für Lesbarkeit */
    scrollbar-width: thin; /* Dünnerer Scrollbalken (Firefox) */
    scrollbar-color: #555 #1a1a1a; /* Farbe des Scrollbalkens (Firefox) */
}

/* Für Webkit-basierte Browser (Chrome, Edge, Safari) */
.scroll-container::-webkit-scrollbar {
    width: 8px;
}

.scroll-container::-webkit-scrollbar-thumb {
    background-color: #555; /* Farbe des Scrollbalkens */
    border-radius: 5px;
}

.scroll-container::-webkit-scrollbar-track {
    background-color: #1a1a1a; /* Hintergrund des Scroll-Tracks */
}