/* /Components/UI/FormsAndValidation/BlbValidationMessage.razor.rz.scp.css */
.field-with-errors[b-4goq1frxpd] {
    position: relative;
    height: 1.2rem;
}

.validation-wrapper[b-4goq1frxpd] {
    position: absolute;
    top: 4px;
    left: 0;
    right: 0;
    overflow: hidden;
    z-index: 2000;
    padding: 0px 4px 0px 4px;
    border: 0px solid #ff8a8a;
    border-radius: 6px;
    background-color: #fff0f0;
    /* Design */
    font-size: 0.85rem;
    line-height: 1.2rem;
    /* Keine Interaktion */
    pointer-events: none;
    /* Start für Animation */
    max-height: 100px;
    opacity: 0;
}

    /* Wenn ValidationMessage mindestens ein <span> enthält → sichtbar */
    .validation-wrapper:has(.validation-message)[b-4goq1frxpd] {
        max-height: 1.2rem;
        background-color: transparent;
        opacity: 1;
        transition: 
            max-height 0.2s ease-out 3s, 
            background-color 1s ease-out 3s, 
            opacity 0.25s ease-in-out; /* 3s Delay, 0.2s schnell */
    }

/* /Components/UI/FormsAndValidation/ValidationSummaryWithAlert.razor.rz.scp.css */
.floating-errors[b-u1p6bipawd] {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 2000;
    background: #ffe6e6;
    border: 1px solid #ff8a8a;
    padding: 8px 12px;
    border-radius: 6px;
}

[b-u1p6bipawd] .validation-errors {
    margin: 0;
    list-style-type: square;
}
/* /Components/UI/SlideToConfirmButton.razor.rz.scp.css */
.slide-confirm[b-kxvh6sm8in] {
    position: relative;
    display: flex;
    overflow: hidden;
    user-select: none;
    cursor: default;
}

.slide-confirm-text[b-kxvh6sm8in] {
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    overflow: hidden;
    min-width: 0;
    text-overflow: ellipsis;
}

.slide-confirm-container[b-kxvh6sm8in] {
    position: absolute;
    right: 3px;
    top: 3px;
    bottom: 3px;
    left: 3px;
    border-radius: calc(var(--rz-button-border-radius, var(--rz-border-radius, 4px)) - 1px);
    border: 1px solid rgba(255, 255, 255, 0.33);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
}

.slide-confirm-handle[b-kxvh6sm8in] {
    position: absolute;
    left: -1px;
    top: -1px;
    bottom: -1px;
    width: 1.5rem;
    border-radius: calc(var(--rz-button-border-radius, var(--rz-border-radius, 4px)) - 1px);
    background-color: rgba(255, 255, 255, 0.33);
    border: 1px solid rgba(255, 255, 255, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    touch-action: none;
    font-size: 1rem;
    will-change: transform;
}

.slide-confirm-handle:active[b-kxvh6sm8in] {
    cursor: grabbing;
    background-color: rgba(255, 255, 255, 0.32);
}
