/* body {
    font-family: Arial, sans-serif;
    margin: 20px;
}

h1 {
    font-family: 'Arial', sans-serif; /* Verwendung einer schlichten Schriftart; Sie können auch Google Fonts für mehr Stiloptionen verwenden */
    font-size: 2.5em;                 /* Größere Schriftgröße */
    text-transform: uppercase;       /* Text in Großbuchstaben umwandeln */
    letter-spacing: 2px;             /* Buchstabenabstand erhöhen */
    color: #333;                     /* Dunkelgrauer Text für bessere Lesbarkeit */
    text-shadow: 2px 2px 4px #aaa;   /* Textschatten für Tiefe */
    padding-bottom: 10px;            /* Unteren Abstand hinzufügen */
    border-bottom: 3px solid #e5e5e5;/* Untere Grenzlinie für zusätzliche Betonung */
    margin-bottom: 20px;             /* Abstand nach dem Titel */
    display: inline-block;           /* So dass der Hintergrund und die untere Grenze nur so breit wie der Text sind */
}

a {
    color: #007BFF;          /* Hauptfarbe für den Link (in diesem Fall ein Blauton) */
    text-decoration: none;  /* Entfernt die Unterstreichung */
    transition: color 0.3s; /* Glatter Übergang für Farbänderungen */
    font-weight: 500;       /* Halbfett für mehr Betonung */
    border-bottom: 1px solid #007BFF; /* Untere Grenzlinie für den visuellen Akzent */
    padding-bottom: 2px;    /* Ein wenig Polsterung unten, um den Abstand zur Grenzlinie zu erhöhen */
}

a:hover {
    color: #0056b3;          /* Dunklerer Blauton beim Überfahren mit der Maus */
    border-bottom-color: #0056b3; /* Dunklerer Blauton für die untere Grenzlinie beim Überfahren mit der Maus */
}

a:active {
    color: #004085;          /* Noch dunklerer Blauton beim Klicken */
    border-bottom-color: #004085; /* Noch dunklerer Blauton für die untere Grenzlinie beim Klicken */
}

a:focus {
    outline: none;           /* Entfernt den standardmäßigen Browser-Fokus-Stil */
    box-shadow: 0 0 0 3px rgba(0,123,255, 0.5); /* Fügt einen blauen Fokus-Schatten um den Link hinzu */
} */


.chr_search-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    align-items: center;
    background-color: #f5f5f5;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.chr_search-container input[type="text"],
.chr_search-container input[type="date"],
.chr_search-container button {
    padding: 10px;
    margin-right: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.chr_search-container button {
    cursor: pointer;
    background-color: #007BFF;
    color: white;
}

.chr_article {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    border: 1px solid #dcdcdc;
    padding: 20px;
    border-radius: 5px;
}

.chr_article img {
    width: 100px;
    height: auto;
    border-radius: 5px;
}

.chr_article-info h3 {
    margin-top: 0;
}

/* Pagination Container */
#pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Jeder Paginationsbutton */
#pagination button {
    background-color: #f1f1f1;
    color: #000;
    border: none;
    cursor: pointer;
    padding: 8px 16px;
    text-decoration: none;
    transition: background-color 0.3s;
    margin-left: 4px;
    margin-right: 4px;
    border-radius: 4px; /* Abgerundete Ecken */
    font-size: 16px;
}

/* Hover-Effekt für Paginationsbuttons */
#pagination button:hover {
    background-color: #ddd;
}

/* Stil für den aktiven Paginationsbutton */
#pagination button.chr_active {
    background-color: #4CAF50;
    color: white;
}
