* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Verdana, Geneva, sans-serif;
}

body {
    background-color: #f4f4f4;
	background:#489334 url(pix/bg2.gif) repeat-x;
}

.header {
    position: relative;
}

.hamburger {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 30px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 4px;
    background: #fff;
    margin: 5px 0;
    border-radius: 2px;
}

.hero {
    height: 180px;
    background-image: url("pix/logo.png");
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
    display: flex;
    align-items: top;
    justify-content: right;
    color: #fff;
}

.hero h1 {
    font-size: 5mm;
	padding-right:10px;
	Padding-top:15px;
}

.side-menu {
    position: fixed;
    top: 0;
    left: -280px;
    width: 260px;
    height: 100%;
    background: #222;
    color: #fff;
    overflow-y: auto;
    transition: left 0.3s ease;
    padding-top: 60px;
    z-index: 1000;
}

.side-menu.active {
    left: 0;
}

.side-menu ul {
    list-style: none;
}

.side-menu > ul > li {
    padding: 10px 20px;
    border-bottom: 1px solid #444;
}

.side-menu li ul {
    margin-top: 5px;
    padding-left: 15px;
}

.side-menu li ul li {
    font-size: 14px;
    padding: 5px 0;
}

.side-menu a {
    color: #fff;
    text-decoration: none;
}

.side-menu a:visited {
    color: #fff;
}


.content {
    padding: 15px;
}

.search-section form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.search-section input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
	font-size:20px;
}

.search-section button {
    padding: 10px 15px;
    border: none;
    background: #007bff;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
	font-size:20px;
}

.results-section table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.results-section th,
.results-section td {
    padding: 6px;
    border: 1px solid #ddd;
    text-align: left;
    font-size: 14px;
	overflow-wrap: anywhere;
    word-break: break-all;
}

.results-section th {
    background: #003E00;
	color: #fff;
}

/* Alternierende Tabellenzeilen */
.results-section tbody tr:nth-child(odd) {
    background-color: #657515;
}

.results-section tbody tr:nth-child(even) {
    background-color: #758525;
}

/* Spaltenbreiten (4 Spalten: 50% / 20% / 20% / 10%) */
.results-section table {
    table-layout: fixed;
}

.results-section th:nth-child(1),
.results-section td:nth-child(1) {
    width: 45%;
}

.results-section th:nth-child(2),
.results-section td:nth-child(2) {
    width: 21%;
}

.results-section th:nth-child(3),
.results-section td:nth-child(3) {
    width: 23%;
}

.results-section th:nth-child(4),
.results-section td:nth-child(4) {
    width: 5%;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
}
