@import url('./design-tokens.css');
/**
 * Reactive Breadcrumbs CSS
 * Standard 2026 Look & Feel
 */
.reactive-breadcrumbs {
    position: fixed;
    top: 110px; /* Sicher unterhalb der (großen) Topbar positioniert */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 20px;
    background: rgba(0, 0, 0, 0.2); /* Sehr dezent */
    backdrop-filter: blur(8px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    margin: 0;
    font-family: var(--font-sans, sans-serif);
    font-size: 12px;
    letter-spacing: 0.2px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 95vw; /* Volle Breite zulassen */
    width: max-content;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none; /* Keine Scrollbar für cleanen Look */
    white-space: nowrap;
    transition: all 0.3s ease;
    z-index: 49999;
    pointer-events: auto;
}

.reactive-breadcrumbs::-webkit-scrollbar {
    display: none;
}

.reactive-breadcrumbs:hover {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb-item {
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 1px 4px;
    border-radius: 4px;
}

.breadcrumb-item:hover {
    color: #00f0ff;
    background: rgba(0, 240, 255, 0.08);
}

.breadcrumb-item.active {
    color: #fff;
    font-weight: 600;
    pointer-events: none;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.2);
    font-size: 10px;
    margin: 0 2px;
    user-select: none;
}






