.breadcrumbs {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    background: #f4f4f4;
    border-radius: 0.5rem;

    align-items: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    overflow: hidden;
    white-space: nowrap;
    max-width: 100%;
    font-size: 16px;

}






.breadcrumbs a {
    text-decoration: none;
    color: #333;
    background: #e0e0e0;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    transition: background 0.3s, color 0.3s;
    font-size: 16px;
}

.breadcrumbs a:hover {
    background: #007bff;
    color: #fff;
}

.breadcrumbs .current {
    background: #007bff;
    color: #fff;
    pointer-events: none; /* nicht klickbar */
}

.breadcrumbs .divider {
    margin: 0 0.25rem;
    color: #888;
    user-select: none;
    flex-shrink: 0;
}

.breadcrumbs .ellipsis {
    cursor: pointer;
    user-select: none;
    padding: 0.25rem 0.5rem;
    font-weight: bold;
    color: #007BFF;
    display: inline-flex;
    align-items: center;
    line-height: 1;
    position: relative;
    font-size: 16px;
    background: #e0e0e0;      /* wie die anderen Links */
    border-radius: 0.25rem;   /* wie die anderen Links */
    flex-shrink: 0;
}
.breadcrumbs .ellipsis::before {
    content: '❮';
    font-size: 16px;           /* gleich wie der Rest, nicht 18px */
    line-height: 1;
}

.breadcrumbs .ellipsis::before {
    content: '❮'; /* deutlicher Pfeil nach links */
    font-size: 18px;
    margin-right: 4px;
}

/* Tooltip */
.breadcrumbs .ellipsis[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 25%; /* über dem Pfeil */
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 3px 6px;
    border-radius: 3px;
    white-space: nowrap;
    font-size: 12px;
    margin-bottom: 4px;
    pointer-events: none;
     z-index: 1000;
}

body.dark .breadcrumbs,
html.dark .breadcrumbs {
    background: #1f1f1f;
}

body.dark .breadcrumbs a,
html.dark .breadcrumbs a {
    background: #333;
    color: #ddd;
}


