/* Allgemeine Einstellungen */
body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Header */
header {
    background-color: #ddd;
    padding: 20px;
    font-size: 1.5em;
}

/* Navigation */
.navigation {
    text-align: center;
    margin: 20px 0;
}

.navigation a {
    text-decoration: none;
    color: #0077cc;
    font-weight: bold;
    margin: 0 15px;
}

/* Galerie-Tabelle */
.gallery-table {
    display: table; /* Verhindert, dass die Tabelle unnötig skaliert */
    margin: 0 auto; /* Zentriert die Tabelle */
    padding: 10px; /* Stellt sicher, dass um die Tabelle herum 10px Abstand bleibt */
}

/* Tabellenzellen */
.gallery-table td {
    padding: 10px; /* 10 Pixel Abstand um die Thumbnails */
    text-align: center;
}

/* Thumbnails sollen Originalgröße behalten */
.gallery-table img {
    width: auto !important;
    height: auto !important;
    max-width: 120px; /* Maximale Größe der Icons */
    max-height: 80px;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.gallery-table img:hover {
    transform: scale(1.1);
}

/* Footer */
footer {
    background-color: #ddd;
    padding: 10px;
    margin-top: 20px;
}
A:LINK  {
	font-family : Arial, Verdana, sans-serif;
	text-decoration : none;
	font-size : 12px;
	font-weight : normal;
	color : #3f3f3f;
}

A:VISITED  {
	font-family : Arial, Verdana, sans-serif;
	text-decoration : none;
	font-size : 12px;
	font-weight : normal;
	color : #3f3f3f;
}

A:HOVER  {
	font-family : Arial, Verdana, sans-serif;
	text-decoration : underline;
	font-size : 12px;
	/*font-weight : bold;*/
	color : #3f3f3f;
}

A:ACTIVE  {
	font-family : Arial, Verdana, sans-serif;
	text-decoration : underline;
	font-size : 12px;
	/*font-weight : bold;*/
	color : #3f3f3f;
}