/* Container für die Tabelle - 80% Breite */
.pilzfunde-container {
    width: 100%;
#    max-width: 1200px;
    max-width: 1600px;
    margin: 0 auto;
    overflow-x: auto;
}

/* Tabelle selbst */
.pilzfunde-tabelle {
    width: 80%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.pilzfunde-tabelle th {
#    background: #2c3e66;
    background: #6ab43e;
    color: white;
    padding: 10px;
    text-align: left;
    font-weight: 600;
}

.pilzfunde-tabelle td {
    border: 1px solid #ddd;
    padding: 8px;
}

.pilzfunde-tabelle tr:nth-child(even) {
    background: #f9f9f9;
}

/* Datum nicht umbrechen */
.pilzfunde-tabelle td:first-child {
    white-space: nowrap;
}

/* Responsive: auf kleinen Geräten 95% */
@media (max-width: 768px) {
    .pilzfunde-container {
        width: 95%;
    }
}

/* Suchformular */
.pilz-suche {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.suchformular {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-end;
}

.suchfeld {
    flex: 1;
    min-width: 180px;
}

.suchfeld label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 14px;
}

.suchfeld input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.suchbutton {
    background: #2c3e66;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
}

.resetlink {
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

.hinweis {
    background: #e8f0fe;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.anzahl {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
    text-align: right;
}

/* Für das Template "Volle Breite" */
.pilzverein-fullwidth-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
