/* Gehört zu Views/Home/Leistungen.cshtml. */
.ba-slider-wrapper {
    position: relative;
    display: flex;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.ba-slider-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: flex 0.05s ease;
    overflow: hidden;
}
.ba-slider-before {
    background: linear-gradient(135deg, #fff5f5, #ffe0e0);
}
.ba-slider-after {
    background: linear-gradient(135deg, #f0fff4, #d4edda);
}
.ba-slider-content {
    text-align: center;
    padding: 1rem;
}
.ba-slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ba-slider-range {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: col-resize;
    z-index: 10;
}
.ba-slider-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: var(--primary, #0d6efd);
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 5;
}
.ba-slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--primary, #0d6efd);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    pointer-events: none;
    z-index: 5;
}
.tonnen-tab-btn.active {
    box-shadow: 0 2px 8px rgba(13,110,253,0.3);
}
