/*
Theme Name: GeneratePress Child
Theme URI: https://generatepress.com
Description: Child Theme für GeneratePress mit individuellem CSS
Author: Dein Name
Author URI: https://deine-website.at
Template: generatepress
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: generatepress-child
*/

/* ==========================================================================
   INHALTSVERZEICHNIS
   ==========================================================================
   1. GeneratePress Container & Grid Anpassungen
   2. Header & Navigation
   3. Responsive Perchtenlauf Tabellen
   4. Adventmärkte Tabellen
   5. Restaurant & Business Listings
   6. Müllabfuhr-Terminkalender
      6.1 Restmüll
      6.2 Altpapier
      6.3 Biomüll
      6.4 Leichtverpackungen
   ========================================================================== */


/* ==========================================================================
   1. GENERATEPRESS CONTAINER & GRID ANPASSUNGEN
   ========================================================================== */

h1.gb-headline-ffb508d0 {
    display: flex;
    flex-direction: column;
    align-items: center;
    column-gap: 0.5em;
    margin-bottom: 5px;
}

.gb-container-a591dc2b {
    max-width: 1240px;
    padding: 40px 40px;
    margin-right: auto;
    margin-left: auto;
}

.gb-container-ae6e57b2 > .gb-inside-container {
    padding: 1% 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
    position: relative;
    background-color: #168a0c;
}

.gb-container-d2744bcf {
    background-color: #028337;
}

.gb-container-ae6e57b2 {
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.gb-grid-wrapper > .gb-grid-column-829d68fa {
    width: 24%;
    margin-left: 1%;
}

@media (max-width: 768px) {
    .one-container .site-content {
        padding: 20px 30px 20px 30px;
    }
}

.one-container .site-content {
    padding: 20px 30px 0px 30px;
}

@media (max-width: 767px) {
    .gb-container-f24e5397 {
        padding: 40px 30px;
    }
}


/* ==========================================================================
   2. HEADER & NAVIGATION
   ========================================================================== */

/* Header Branding */
.navigation-branding, 
.mobile-header-navigation.has-menu-bar-items .mobile-header-logo {
    padding-left: 24px;
    padding-right: 24px;
    background-color: var(--accent);
    margin-left: 0;
}

#site-navigation .inside-navigation .navigation-branding {
    margin-left: 0;
    margin-right: 0;
}

#site-navigation .inside-navigation .menu-bar-items {
    margin-left: auto;
}

/* Navigation Links */
.main-navigation .main-nav ul li a, 
.menu-toggle, 
.main-navigation .menu-bar-item > a {
    padding-left: 15px;
    padding-right: 15px;
}

.main-navigation .main-nav ul ul li[class*="current-menu-"] > a {
    color: #028337;
}

/* Drop Shadow */
.drop-shadow {
    box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.08);
}


/* ==========================================================================
   3. RESPONSIVE PERCHTENLAUF TABELLEN
   Angepasst an Leibnitz Online Design
   ========================================================================== */

/* Basis-Styling für die Tabelle */
.wp-block-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border-radius: 4px;
    overflow: hidden;
}

/* Tabellenkopf - Neutral und dezent */
.wp-block-table thead {
    background: #028337;
    border-bottom: 2px solid #ddd;
}

.wp-block-table thead th {
    padding: 14px 12px;
    font-weight: 600;
    text-align: left;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
}

/* Tabellenkörper */
.wp-block-table tbody tr {
    border-bottom: 1px solid #e8e8e8;
    transition: background-color 0.2s ease;
}

.wp-block-table tbody tr:hover {
    background-color: #fafafa;
}

.wp-block-table tbody tr:last-child {
    border-bottom: none;
}

.wp-block-table tbody td {
    padding: 12px;
    font-size: 15px;
    color: #333;
    line-height: 1.5;
}

/* Datum-Spalte hervorheben */
.wp-block-table tbody td:first-child {
    font-weight: 600;
    color: #000;
}

/* Besonderheiten-Spalte */
.wp-block-table tbody td:last-child {
    color: #666;
    font-style: italic;
}


/* RESPONSIVE - MOBILE DESIGN (< 768px) */
@media screen and (max-width: 768px) {
    
    /* Tabellenkopf verstecken */
    .wp-block-table thead {
        display: none;
    }
    
    /* Tabelle als Block-Container */
    .wp-block-table table,
    .wp-block-table tbody {
        display: block;
        width: 100%;
    }
    
    /* Jede Zeile wird zu einer Card */
    .wp-block-table tbody tr {
        display: block;
        margin-bottom: 16px;
        border: 1px solid #ddd;
        border-radius: 8px;
        background: #fff;
        padding: 0;
        box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    }
    
    .wp-block-table tbody tr:hover {
        box-shadow: 0 3px 8px rgba(0,0,0,0.12);
    }
    
    /* Jede Zelle als Block - OHNE überlappende Labels */
    .wp-block-table tbody td {
        display: block;
        width: 100%;
        padding: 10px 16px;
        border: none;
        text-align: left;
        position: relative;
    }
    
    /* Label über dem Wert statt daneben */
    .wp-block-table tbody td:before {
        content: attr(data-label);
        display: block;
        font-weight: 600;
        color: #666;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 4px;
    }
    
    /* Datum - groß und prominent */
    .wp-block-table tbody td:nth-child(1) {
        background: #028337;
        border-bottom: 3px solid #fff;
        padding: 14px 16px;
        font-size: 16px;
        font-weight: 600;
        color: #fff;
    }
    
    .wp-block-table tbody td:nth-child(1):before {
        content: "";
        display: none;
    }
    
    /* Wochentag - direkt unter Datum */
    .wp-block-table tbody td:nth-child(2) {
        background: #f9f9f9;
        border-bottom: 1px solid #ddd;
        padding: 6px 16px 12px 16px;
        font-size: 13px;
        color: #666;
        font-weight: 500;
    }
    
    .wp-block-table tbody td:nth-child(2):before {
        content: "";
        display: none;
    }
    
    /* Ort - Label darüber */
    .wp-block-table tbody td:nth-child(3) {
        padding-top: 14px;
        font-size: 17px;
        font-weight: 600;
        color: #000;
    }
    
    /* Veranstaltungsort - Label darüber */
    .wp-block-table tbody td:nth-child(4) {
        font-size: 14px;
        color: #555;
    }
    
    /* Besonderheiten - nur wenn vorhanden */
    .wp-block-table tbody td:nth-child(5) {
        background: #fbfbfb;
        border-left: 3px solid #028337;
        padding: 12px 16px;
        margin: 8px 0 0 0;
        font-weight: 600;
        color: #028337;
        font-style: normal;
    }
    
    /* Verstecke leere Besonderheiten (nur "–") */
    .wp-block-table tbody td:nth-child(5):empty {
        display: none;
    }
    
    /* Fix für "–" in Besonderheiten */
    .wp-block-table tbody td:nth-child(5) {
        min-height: 0;
    }
    
    /* Für die 4-Spalten Tabelle (Angrenzende Gebiete) */
    .wp-block-table tbody td:nth-child(4):last-child {
        background: transparent;
        border: none;
        padding: 10px 16px;
    }
}


/* TABLET (768px - 1024px) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .wp-block-table tbody td {
        font-size: 14px;
        padding: 10px 8px;
    }
    
    .wp-block-table thead th {
        font-size: 12px;
        padding: 12px 8px;
    }
}


/* ZUSÄTZLICHE VERBESSERUNGEN */

/* Zebra-Streifen auf Desktop */
@media screen and (min-width: 769px) {
    .wp-block-table tbody tr:nth-child(even) {
        background-color: #fafafa;
    }
    
    .wp-block-table tbody tr:nth-child(even):hover {
        background-color: #f5f5f5;
    }
}

/* Bessere Lesbarkeit für lange Ortsnamen */
.wp-block-table tbody td:nth-child(3) {
    font-weight: 500;
}

/* Print-Styles */
@media print {
    .wp-block-table table {
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .wp-block-table tbody tr {
        page-break-inside: avoid;
    }
}


/* ==========================================================================
   4. ADVENTMÄRKTE TABELLEN
   ========================================================================== */

/* Container für die Adventmärkte Tabelle */
.adventmaerkte-container {
    max-width: 100%;
    margin: 2em 0;
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.adventmaerkte-header {
    background: linear-gradient(135deg, #55555e, #666);
    color: #fff;
    padding: 1.5em;
    text-align: center;
    margin-bottom: 0;
}

.adventmaerkte-header h2 {
    margin: 0;
    font-size: 1.8em;
    font-weight: 300;
    color: #fff;
}

.adventmaerkte-content {
    padding: 1.5em;
}

.region-section {
    margin-bottom: 2.5em;
}

.region-section:last-child {
    margin-bottom: 0;
}

.region-title {
    background: linear-gradient(90deg, #028337, #136c37);
    color: #fff;
    padding: 0.8em 1.2em;
    margin: 0 0 1em 0;
    border-radius: 3px;
    font-size: 1.2em;
    font-weight: 600;
}

/* Tabellen-Wrapper für horizontales Scrollen */
.adventmaerkte-table-wrapper {
    overflow-x: auto;
    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5em;
}

/* Tabellen-Styles */
.adventmaerkte-table-wrapper table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    font-size: 14px;
    background: #fff;
    border: none;
}

.adventmaerkte-table-wrapper thead th {
    background: #fafafa;
    color: #55555e;
    font-weight: 600;
    padding: 1em 0.8em;
    text-align: left;
    border-bottom: 2px solid #55555e;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    border-left: none;
    border-top: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.adventmaerkte-table-wrapper thead th:last-child {
    border-right: none;
}

.adventmaerkte-table-wrapper tbody tr {
    transition: background-color 0.2s ease;
}

.adventmaerkte-table-wrapper tbody tr:nth-child(even) {
    background-color: #fafafa;
}

.adventmaerkte-table-wrapper tbody tr:hover {
    background-color: #f1f1f1;
}

.adventmaerkte-table-wrapper td {
    padding: 0.8em;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    border-left: none;
    border-top: none;
    vertical-align: top;
    line-height: 1.5;
}

.adventmaerkte-table-wrapper td:last-child {
    border-right: none;
}

.adventmaerkte-table-wrapper tbody tr:last-child td {
    border-bottom: none;
}

/* Spezielle Styling für Tabellenzellen */
.adventmaerkte-table-wrapper .event-name {
    font-weight: 600;
    color: #55555e;
}

.adventmaerkte-table-wrapper .event-date {
    color: #666;
    font-weight: 500;
    white-space: nowrap;
    min-width: 120px;
}

.adventmaerkte-table-wrapper .event-location {
    color: #666;
    font-style: italic;
    min-width: 150px;
}

.adventmaerkte-table-wrapper .event-highlights {
    color: #666;
    line-height: 1.4;
}

/* Mobile Responsivität */
@media (max-width: 768px) {
    .adventmaerkte-container {
        margin: 1em 0;
        border-radius: 3px;
    }
    
    .adventmaerkte-header {
        padding: 1em;
    }
    
    .adventmaerkte-header h2 {
        font-size: 1.4em;
    }
    
    .adventmaerkte-content {
        padding: 1em;
    }
    
    .region-title {
        font-size: 1.1em;
        padding: 0.6em 1em;
    }
    
    .adventmaerkte-table-wrapper table {
        font-size: 12px;
        min-width: 600px;
    }
    
    .adventmaerkte-table-wrapper thead th,
    .adventmaerkte-table-wrapper td {
        padding: 0.6em 0.5em;
    }
    
    .adventmaerkte-table-wrapper .event-date {
        min-width: 100px;
    }
    
    .adventmaerkte-table-wrapper .event-location {
        min-width: 120px;
    }
}

/* Kleine Mobile Geräte */
@media (max-width: 480px) {
    .adventmaerkte-header h2 {
        font-size: 1.2em;
    }
    
    .adventmaerkte-table-wrapper table {
        font-size: 11px;
    }
}


/* ==========================================================================
   5. RESTAURANT & BUSINESS LISTINGS
   ========================================================================== */

/* Restaurant Listing Container */
.restaurant-listing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #000;
}

.restaurant-listing-container .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.restaurant-listing-container .main-content {
    background: white;
    margin: 20px auto 0;
    position: relative;
    z-index: 2;
    border-radius: 12px;
    overflow: hidden;
}

.restaurant-listing-container .restaurant-info-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 40px;
}

.restaurant-listing-container .restaurant-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.restaurant-listing-container .restaurant-description h2 {
    color: #028337;
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #028337;
    padding-bottom: 10px;
}

.restaurant-listing-container .restaurant-description p {
    margin-bottom: 20px;
}

.restaurant-listing-container .quick-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #dee2e6;
    height: fit-content;
}

.restaurant-listing-container .quick-info h3 {
    color: #028337;
    font-size: 1.4rem;
    margin-bottom: 20px;
    text-align: center;
}

.restaurant-listing-container .info-item {
    margin-bottom: 20px;
}

.restaurant-listing-container .info-item:last-child {
    margin-bottom: 0;
}

.restaurant-listing-container .info-label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.restaurant-listing-container .info-value {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
}

.restaurant-listing-container .info-value a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.restaurant-listing-container .info-value a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .restaurant-listing-container {
        padding: 15px;
    }
    
    .restaurant-listing-container .restaurant-info-grid {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 30px;
    }
}

/* Business Listing Container */
.business-listing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.business-listing-container .main-content {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.business-listing-container .container {
    padding: 0;
}

.business-info-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0;
    min-height: 600px;
}

@media (max-width: 768px) {
    .business-info-grid {
        grid-template-columns: 1fr;
    }
}

.business-description {
    padding: 40px;
    background: #f8f9fa;
    border-right: 1px solid #e9ecef;
}

@media (max-width: 768px) {
    .business-description {
        border-right: none;
        border-bottom: 1px solid #e9ecef;
    }
}

.business-description h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    line-height: 1.2;
}

.business-description p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #555;
    text-align: justify;
}

.business-listing-container .quick-info {
    padding: 40px;
    background: #fff;
}

.business-listing-container .quick-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 30px;
    border-bottom: 3px solid #27ae60;
    padding-bottom: 10px;
}

.business-listing-container .info-item {
    margin-bottom: 25px;
    border-bottom: 1px solid #f1f2f6;
    padding-bottom: 15px;
}

.business-listing-container .info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.business-listing-container .info-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.business-listing-container .info-label {
    font-weight: 600;
    color: #34495e;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.business-listing-container .info-value {
    color: #2c3e50;
    font-size: 1.05rem;
}

.business-listing-container .info-value a {
    color: #27ae60;
    text-decoration: none;
    transition: color 0.3s ease;
}

.business-listing-container .info-value a:hover {
    color: #229954;
    text-decoration: underline;
}


/* ==========================================================================
   6. MÜLLABFUHR-TERMINKALENDER
   ========================================================================== */

/* 6.1 RESTMÜLL */
.restmuell-container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    max-width: 1200px;
    margin: 0 auto 20px auto;
}

.restmuell-title {
    color: #2c5f41;
    text-align: center;
    margin-bottom: 10px;
    font-size: 2.2em;
    font-weight: bold;
}

.restmuell-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1em;
}

.quarter-overview {
    background: #f0f8f0;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border: 2px solid #2c5f41;
}

.quarter-overview h2 {
    color: #2c5f41;
    margin-top: 0 !important;
    font-size: 1.8em;
}

.quarter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.quarter-card {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.quarter-card.q1 { border-left: 4px solid #2c5f41; }
.quarter-card.q2 { border-left: 4px solid #4a7c5d; }
.quarter-card.q3 { border-left: 4px solid #6b9d73; }
.quarter-card.q4 { border-left: 4px solid #8db38f; }

.quarter-card h3 {
    margin: 0 0 10px 0 !important;
    font-size: 1.3em;
}

.quarter-card.q1 h3 { color: #2c5f41; }
.quarter-card.q2 h3 { color: #4a7c5d; }
.quarter-card.q3 h3 { color: #6b9d73; }
.quarter-card.q4 h3 { color: #8db38f; }

.quarter-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.quarter-list li {
    padding: 5px 0;
    border-bottom: 1px dotted #ccc;
    margin: 0 !important;
}

.quarter-list li:last-child {
    border-bottom: none;
}

.restmuell-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.restmuell-table th,
.restmuell-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: center;
}

.restmuell-table th {
    background-color: #1a3d2e !important;
    color: white !important;
    font-weight: bold;
}

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

.restmuell-table tr.alt-row {
    background-color: #f8fff8 !important;
}

.restmuell-table tr:hover {
    background-color: #e8f5e8;
}

.restmuell-table .quarter-q1 { background: #e8f5e8 !important; }
.restmuell-table .quarter-q2 { background: #d4edda !important; }
.restmuell-table .quarter-q3 { background: #c3e6c8 !important; }
.restmuell-table .quarter-q4 { background: #b8dfc2 !important; }

.restmuell-table .row-number {
    font-weight: bold;
    color: #2c5f41;
}

.restmuell-table .date-cell {
    font-weight: bold;
}

.restmuell-section-title {
    color: #2c5f41 !important;
    margin-top: 30px !important;
    font-size: 1.6em;
    font-weight: bold;
}

.restmuell-footer {
    text-align: center;
    color: #666;
    margin-top: 30px;
    font-size: 12px;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-top: 3px solid #2c5f41;
}

.restmuell-footer p {
    margin: 5px 0;
}

.restmuell-note {
    background-color: #e8f5e8;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
    border-left: 4px solid #2c5f41;
}

.restmuell-note ul {
    margin: 10px 0 0 0;
    padding-left: 20px;
}

.restmuell-note li {
    margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .quarter-grid {
        grid-template-columns: 1fr;
    }
    
    .restmuell-table {
        font-size: 14px;
    }
    
    .restmuell-table th,
    .restmuell-table td {
        padding: 8px 4px;
    }
}


/* 6.2 ALTPAPIER */
.altpapier-container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    max-width: 1200px;
    margin: 0 auto 20px auto;
}

.altpapier-title {
    color: #dc3545;
    text-align: center;
    margin-bottom: 10px;
    font-size: 2.2em;
    font-weight: bold;
}

.altpapier-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1em;
}

.altpapier-quarter-overview {
    background: #fdf2f2;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border: 2px solid #dc3545;
}

.altpapier-quarter-overview h2 {
    color: #dc3545;
    margin-top: 0 !important;
    font-size: 1.8em;
}

.altpapier-quarter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.altpapier-quarter-card {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.altpapier-quarter-card.q1 { border-left: 4px solid #dc3545; }
.altpapier-quarter-card.q2 { border-left: 4px solid #e74c3c; }
.altpapier-quarter-card.q3 { border-left: 4px solid #f1c40f; }
.altpapier-quarter-card.q4 { border-left: 4px solid #e67e22; }

.altpapier-quarter-card h3 {
    margin: 0 0 10px 0 !important;
    font-size: 1.3em;
}

.altpapier-quarter-card.q1 h3 { color: #dc3545; }
.altpapier-quarter-card.q2 h3 { color: #e74c3c; }
.altpapier-quarter-card.q3 h3 { color: #d68910; }
.altpapier-quarter-card.q4 h3 { color: #e67e22; }

.altpapier-quarter-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.altpapier-quarter-list li {
    padding: 5px 0;
    border-bottom: 1px dotted #ccc;
    margin: 0 !important;
}

.altpapier-quarter-list li:last-child {
    border-bottom: none;
}

.altpapier-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.altpapier-table th,
.altpapier-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: center;
}

.altpapier-table th {
    background-color: #a71e2a !important;
    color: white !important;
    font-weight: bold;
}

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

.altpapier-table tr.alt-row {
    background-color: #fef9f9 !important;
}

.altpapier-table tr:hover {
    background-color: #fdf2f2;
}

.altpapier-table .quarter-q1 { background: #fadbd8 !important; }
.altpapier-table .quarter-q2 { background: #f5b7b1 !important; }
.altpapier-table .quarter-q3 { background: #fcf3cf !important; }
.altpapier-table .quarter-q4 { background: #f8c471 !important; }

.altpapier-table .row-number {
    font-weight: bold;
    color: #dc3545;
}

.altpapier-table .date-cell {
    font-weight: bold;
}

.altpapier-section-title {
    color: #dc3545 !important;
    margin-top: 30px !important;
    font-size: 1.6em;
    font-weight: bold;
}

.altpapier-footer {
    text-align: center;
    color: #666;
    margin-top: 30px;
    font-size: 12px;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-top: 3px solid #dc3545;
}

.altpapier-footer p {
    margin: 5px 0;
}

.altpapier-note {
    background-color: #fdf2f2;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
    border-left: 4px solid #dc3545;
}

.altpapier-note ul {
    margin: 10px 0 0 0;
    padding-left: 20px;
}

.altpapier-note li {
    margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .altpapier-quarter-grid {
        grid-template-columns: 1fr;
    }
    
    .altpapier-table {
        font-size: 14px;
    }
    
    .altpapier-table th,
    .altpapier-table td {
        padding: 8px 4px;
    }
}


/* 6.3 BIOMÜLL */
.biomuell-container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    max-width: 1200px;
    margin: 0 auto 20px auto;
}

.biomuell-title {
    color: #8b4513;
    text-align: center;
    margin-bottom: 10px;
    font-size: 2.2em;
    font-weight: bold;
}

.biomuell-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1em;
}

.biomuell-quarter-overview {
    background: #f8f5f0;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border: 2px solid #8b4513;
}

.biomuell-quarter-overview h2 {
    color: #8b4513;
    margin-top: 0 !important;
    font-size: 1.8em;
}

.biomuell-quarter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.biomuell-quarter-card {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.biomuell-quarter-card.q1 { border-left: 4px solid #8b4513; }
.biomuell-quarter-card.q2 { border-left: 4px solid #a0522d; }
.biomuell-quarter-card.q3 { border-left: 4px solid #cd853f; }
.biomuell-quarter-card.q4 { border-left: 4px solid #daa520; }

.biomuell-quarter-card h3 {
    margin: 0 0 10px 0 !important;
    font-size: 1.3em;
}

.biomuell-quarter-card.q1 h3 { color: #8b4513; }
.biomuell-quarter-card.q2 h3 { color: #a0522d; }
.biomuell-quarter-card.q3 h3 { color: #cd853f; }
.biomuell-quarter-card.q4 h3 { color: #daa520; }

.biomuell-quarter-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.biomuell-quarter-list li {
    padding: 5px 0;
    border-bottom: 1px dotted #ccc;
    margin: 0 !important;
}

.biomuell-quarter-list li:last-child {
    border-bottom: none;
}

.biomuell-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.biomuell-table th,
.biomuell-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: center;
}

.biomuell-table th {
    background-color: #654321 !important;
    color: white !important;
    font-weight: bold;
}

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

.biomuell-table tr.alt-row {
    background-color: #faf9f7 !important;
}

.biomuell-table tr:hover {
    background-color: #f8f5f0;
}

.biomuell-table .quarter-q1 { background: #f4e4bc !important; }
.biomuell-table .quarter-q2 { background: #f0d68c !important; }
.biomuell-table .quarter-q3 { background: #ede0c3 !important; }
.biomuell-table .quarter-q4 { background: #f5deb3 !important; }

.biomuell-table .row-number {
    font-weight: bold;
    color: #8b4513;
}

.biomuell-table .date-cell {
    font-weight: bold;
}

.biomuell-table .location-k {
    background-color: #e8f5e8 !important;
}

.biomuell-table .location-ls {
    background-color: #fff3cd !important;
}

.biomuell-section-title {
    color: #8b4513 !important;
    margin-top: 30px !important;
    font-size: 1.6em;
    font-weight: bold;
}

.biomuell-footer {
    text-align: center;
    color: #666;
    margin-top: 30px;
    font-size: 12px;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-top: 3px solid #8b4513;
}

.biomuell-footer p {
    margin: 5px 0;
}

.biomuell-note {
    background-color: #f8f5f0;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
    border-left: 4px solid #8b4513;
}

.biomuell-note ul {
    margin: 10px 0 0 0;
    padding-left: 20px;
}

.biomuell-note li {
    margin-bottom: 5px;
}

.biomuell-location-info {
    background-color: #e7f3ff;
    padding: 10px;
    border-radius: 5px;
    margin: 10px 0;
    border-left: 3px solid #007bff;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .biomuell-quarter-grid {
        grid-template-columns: 1fr;
    }
    
    .biomuell-table {
        font-size: 14px;
    }
    
    .biomuell-table th,
    .biomuell-table td {
        padding: 8px 4px;
    }
}


/* 6.4 LEICHTVERPACKUNGEN */
.lvp-container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    max-width: 1200px;
    margin: 0 auto 20px auto;
}

.lvp-title {
    color: #f1c40f;
    text-align: center;
    margin-bottom: 10px;
    font-size: 2.2em;
    font-weight: bold;
}

.lvp-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1em;
}

.lvp-quarter-overview {
    background: #fffacd;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border: 2px solid #f1c40f;
}

.lvp-quarter-overview h2 {
    color: #f1c40f;
    margin-top: 0 !important;
    font-size: 1.8em;
}

.lvp-quarter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.lvp-quarter-card {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.lvp-quarter-card.q1 { border-left: 4px solid #f1c40f; }
.lvp-quarter-card.q2 { border-left: 4px solid #f39c12; }
.lvp-quarter-card.q3 { border-left: 4px solid #ff8c00; }
.lvp-quarter-card.q4 { border-left: 4px solid #ff6b35; }

.lvp-quarter-card h3 {
    margin: 0 0 10px 0 !important;
    font-size: 1.3em;
}

.lvp-quarter-card.q1 h3 { color: #f1c40f; }
.lvp-quarter-card.q2 h3 { color: #f39c12; }
.lvp-quarter-card.q3 h3 { color: #ff8c00; }
.lvp-quarter-card.q4 h3 { color: #ff6b35; }

.lvp-quarter-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.lvp-quarter-list li {
    padding: 5px 0;
    border-bottom: 1px dotted #ccc;
    margin: 0 !important;
}

.lvp-quarter-list li:last-child {
    border-bottom: none;
}

.lvp-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.lvp-table th,
.lvp-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: center;
}

.lvp-table th {
    background-color: #d68910 !important;
    color: white !important;
    font-weight: bold;
}

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

.lvp-table tr.alt-row {
    background-color: #fdfbf7 !important;
}

.lvp-table tr:hover {
    background-color: #fffacd;
}

.lvp-table .quarter-q1 { background: #fff9c4 !important; }
.lvp-table .quarter-q2 { background: #fdeaa7 !important; }
.lvp-table .quarter-q3 { background: #fad5a5 !important; }
.lvp-table .quarter-q4 { background: #ffb347 !important; }

.lvp-table .row-number {
    font-weight: bold;
    color: #f1c40f;
}

.lvp-table .date-cell {
    font-weight: bold;
}

.lvp-section-title {
    color: #f1c40f !important;
    margin-top: 30px !important;
    font-size: 1.6em;
    font-weight: bold;
}

.lvp-footer {
    text-align: center;
    color: #666;
    margin-top: 30px;
    font-size: 12px;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-top: 3px solid #f1c40f;
}

.lvp-footer p {
    margin: 5px 0;
}

.lvp-note {
    background-color: #fffacd;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
    border-left: 4px solid #f1c40f;
}

.lvp-note ul {
    margin: 10px 0 0 0;
    padding-left: 20px;
}

.lvp-note li {
    margin-bottom: 5px;
}

.lvp-info-box {
    background-color: #e1f5fe;
    padding: 10px;
    border-radius: 5px;
    margin: 10px 0;
    border-left: 3px solid #03a9f4;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .lvp-quarter-grid {
        grid-template-columns: 1fr;
    }
    
    .lvp-table {
        font-size: 14px;
    }
    
    .lvp-table th,
    .lvp-table td {
        padding: 8px 4px;
    }
}
