.igz-menu { margin-bottom: 20px; font-size: 14px; background:var(--back); padding:10px; text-align:right; }
.igz-menu a { margin-right: 15px; text-decoration: none;}
.igz-menu a:hover { text-decoration: underline; }

.igz-current-newspapers { display: flex; flex-wrap: wrap; margin-bottom: 30px; justify-content:center; gap:10px; padding:30px; }
.igz-newspaper { text-align: center; padding: 0px; margin:10px;}
.igz-newspaper a { display: block; }
.igz-logo { max-width: 250px; height: auto; }

.igz-latest-articles { list-style: square; padding-left: 20; margin-bottom: 30px; margin-left:30px; text-align:left; background:var(--hbg); }
.igz-latest-articles li { padding: 5px 10px; border-bottom: 1px solid var(--accenttr); }

.igz-archive a:hover {
	letter-spacing:normal;
	color:var(--accent);
	transition:2s;
}

.igz-menu a:hover {
	letter-spacing:normal;
	color:var(--accent);
	transition:2s;
}


/* Container der Übersicht */
.igzeitung-overview {
    margin: 0 auto;
    padding: 20px;
    background-color: var(--body);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
}

/* Überschriften */
.igzeitung-overview h1 {
    font-size: 28px;
    color: var(--accent);
    margin-bottom: 15px;
    border-bottom: 2px solid var(--border);
    padding-bottom: 5px;
}

.igz-menu h2 {
    font-size: 28px;
    color: var(--accent);
	text-align:left;
    margin-top: 25px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 3px;
}

/* Listen */
.igzeitung-overview ul {
    list-style: none;
    padding-left: 0;
    margin: 0 0 20px 0;
}

.igzeitung-overview ul li {
    padding: 8px 12px;
    margin-bottom: 5px;
    background-color: var(--hbg);
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease;
}

.igzeitung-overview ul li:hover {
    background-color: var(--hbg);
}

/* Logos in der Liste */
.igzeitung-overview ul li img {
    max-height: 50px;
    margin-right: 10px;
    border: 1px solid var(--border);
}

/* Link zum Artikel erstellen */
.igzeitung-overview a {
    color: var(--accent);
    text-decoration: none;
    font-weight: bold;
}

.igzeitung-overview a:hover {
    text-decoration: underline;
}

/* Statistik */
.igzeitung-stats ul li {
    margin-bottom: 6px;
    font-size: 14px;
}

.igzeitung-write {
    margin: 0 auto;
    padding: 20px;
    background-color: var(--body);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
}

.igzeitung-write h1 {
    font-size: 28px;
    color: var(--accent);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 5px;
}

/* Fehlerliste */
.igzeitung-write .errors {
    background-color: #ffe6e6;
    border: 1px solid #ff9999;
    padding: 10px 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    color: #b30000;
}

/* Formular */
.igzeitung-write form p {
    margin-bottom: 15px;
}

.igzeitung-write label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.igzeitung-write input[type="text"],
.igzeitung-write input[type="date"],
.igzeitung-write select,
.igzeitung-write textarea {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid var(--hbg);
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
}

.igzeitung-write textarea {
    resize: vertical;
}

/* Datei-Upload */
.igzeitung-write input[type="file"] {
    display: block;
}

/* Submit-Button */
.igzeitung-write input[type="submit"] {
    background-color: var(--accent);
    color: var(--back);
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.igzeitung-write input[type="submit"]:hover {
    background-color: var(--txt);
}



