.page { 
    display: none; 
}
.page.active { 
    display: flex; 
    flex-direction: column; 
}
.pool-item:last-child { 
    border-bottom: none; 
}
::-webkit-scrollbar { 
    width: 6px; 
    height: 6px; 
}
::-webkit-scrollbar-thumb { 
    background: #1e293b; 
    border-radius: 10px; 
}
::-webkit-scrollbar-track { 
    background: #f1f5f9; 
}

.veraltet-badge {
    display: inline-block;
    background: #fef3c7;
    color: #92400e;
    padding: 2px 8px;
    border-radius: 9999px;
    font-size: 10px;
    font-weight: 800;
    border: 1px solid #fbbf24;
}
.aktuell-badge {
    display: inline-block;
    background: #d1fae5;
    color: #065f46;
    padding: 2px 8px;
    border-radius: 9999px;
    font-size: 10px;
    font-weight: 800;
}

/* PROFESSIONELLE DRUCK-STEUERUNG */
@media print {
    body {
        background: white !important;
        color: black !important;
    }
    /* Alle App-Elemente verbergen */
    header, nav, main > section:not(#print-delivery-note) {
        display: none !important;
    }
    /* Lieferschein erzwingen */
    #print-delivery-note {
        display: block !important;
        width: 100% !important;
        position: absolute;
        top: 0;
        left: 0;
        padding: 0 !important;
        margin: 0 !important;
    }
}