.bp-hero {
    background: linear-gradient(120deg, #118ab2, #073b4c);
    padding: 60px 0;
    color: #fff;
    text-align: center;
}
.bp-hero h1 { font-size: 2.6rem; }

.bp-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    padding: 40px 20px;
}

.bp-info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.bp-box {
    background: #e0f4fb;
    border-left: 5px solid #118ab2;
    border-radius: 10px;
    padding: 18px 20px;
}
.bp-box h3 { margin-bottom: 6px; color: #073b4c; }

/* Toolbar */
.bp-toolbar {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    background: #e0f4fb;
    border-radius: 14px;
    padding: 14px 18px;
    margin: 26px 0 18px;
    position: sticky;
    top: 10px;
    z-index: 10;
}
.bp-toolbar-count {
    font-weight: 700;
    color: #073b4c;
    margin-right: auto;
}
.bp-btn {
    border: none;
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.95rem;
}
.bp-btn-primary { background: #118ab2; color: #fff; }
.bp-btn-primary:hover { background: #0c6a8a; }
.bp-btn-outline { background: #fff; color: #118ab2; border: 2px solid #118ab2; }
.bp-btn-outline:hover { background: #d5f0f8; }
.bp-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* Oberkategorien */
.bp-categories { display: grid; gap: 14px; }

.bp-category {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
}

.bp-category-summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #118ab2;
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
}
.bp-category-summary::-webkit-details-marker { display: none; }
.bp-category-summary::after {
    content: "▾";
    transition: transform .2s ease;
}
.bp-category[open] > .bp-category-summary::after { transform: rotate(180deg); }

.bp-category-count {
    background: rgba(255,255,255,0.25);
    border-radius: 999px;
    padding: 2px 10px;
    font-size: 0.85rem;
    margin-left: 10px;
}

.bp-subitems {
    padding: 10px 16px 16px;
    display: grid;
    gap: 8px;
}

.bp-empty {
    color: #6b7d85;
    padding: 10px 6px;
}

/* Unterkategorien */
.bp-subitem {
    border: 1px solid #d5eaf1;
    border-radius: 10px;
    background: #f7fcfe;
}

.bp-subitem-summary {
    list-style: none;
    cursor: pointer;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #073b4c;
}
.bp-subitem-summary::-webkit-details-marker { display: none; }
.bp-subitem-summary::before {
    content: "▸";
    color: #118ab2;
    transition: transform .15s ease;
}
.bp-subitem[open] > .bp-subitem-summary::before { transform: rotate(90deg); }

.bp-checkbox-label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}
.bp-checkbox-label input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.bp-subitem-desc {
    padding: 0 16px 16px 46px;
    color: #333;
    line-height: 1.6;
}

@media (max-width: 780px) {
    .bp-layout { grid-template-columns: 1fr; }
    .bp-toolbar { position: static; }
}

/* Druckansicht */
@media print {
    .site-header, .site-footer, .bp-sidebar, .bp-toolbar, .bp-text,
    .bp-category:not(.bp-print-only), aside { display: none !important; }
    .bp-print-list { display: block !important; }
}
.bp-print-list { display: none; }

@media (max-width: 780px) {
    .bp-layout { grid-template-columns: 1fr; }
}
