/* Stil für das Header-Bild */
header img {
    width: 80%; /* Bildbreite auf 80% setzen */
    height: auto; /* Seitenverhältnis beibehalten */
    display: block; /* Entfernt unnötige Abstände */
    margin: 0 auto; /* Zentriert das Bild horizontal */
}

/* Text unterhalb des Bildes */
main h1, main p {
    text-align: left;
    margin-left: 10px;
}

/* Menu-Container */
.menu-container {
    width: 100%;
    background-color: gray;
    padding: 10px;
    display: flex;
    align-items: center;
    position: relative;
}

/* Hamburger-Menu */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger-menu div {
    width: 25px;
    height: 3px;
    background-color: black;
}

/* Dropdown */
.dropdown {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 50px;
    left: 0;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 5px;
    z-index: 1000;
    width: max-content;
}

/* Dropdown Links */
.dropdown a {
    text-decoration: none;
    color: black;
    padding: 5px 10px;
    transition: background-color 0.3s ease;
}

.dropdown a:hover {
    background-color: lightgray;
    border-radius: 3px;
}

/* Show dropdown when active */
.show {
    display: flex;
}

/* Pinnwand */
.pinnwand-container {
    width: 95%; /* Nimmt 95% der verfügbaren Breite ein */
    aspect-ratio: 1 / 1; /* Höhe = Breite (100% der Breite) */
    margin: 20px auto; /* Zentriert im sichtbaren Bereich */
    background-image: url('/rc_images/korck.jpg'); /* Hintergrund als Kork-Platte */
    background-size: cover; /* Füllt den gesamten Container */
    background-position: center; /* Zentriert das Bild */
    border: 40px solid transparent; /* Erzeugt Platz für den Holzrahmen */
    border-image-source: url('/rc_images/Holz.jpeg'); /* Holztextur für den Rahmen */
    border-image-slice: 20; /* Anpassung für die Texturgröße */
    border-radius: 10px; /* Runde Ecken */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5); /* Schatten für Tiefe */
    overflow: hidden;
}
	
/* Entfernt Unterstreichung für Links, die als Buttons dargestellt werden */
.menu-button {
    text-decoration: none; /* Keine Unterstreichung */
    display: inline-block; /* Damit der Link wie ein Button wirkt */
    text-align: center;
}

.search-container {
    margin: 20px 0;
    text-align: center;
}

.search-input {
    padding: 10px;
    width: 300px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.search-button {
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.search-button:hover {
    background-color: #0056b3;
}

.results-table {
    margin: 20px auto;
    width: 80%;
    border-collapse: collapse;
}

.results-table th, .results-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.results-table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.results-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.results-table tr:hover {
    background-color: #f1f1f1;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #f1f1f1;
    margin-top: 20px;
}

.footer-links a {
    margin: 0 10px;
    text-decoration: none;
    color: #000;
}

.footer-links a:hover {
    text-decoration: underline;
}





