/* /Dialogs/Authentication/ForceLogoutNotification.razor.rz.scp.css */
/* Force Logout Notification */
/* Backdrop */
.logout-modal-backdrop[b-1hsif532o3] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(27, 24, 69, 0.65); /* --primary at 65% */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: logoutFadeIn-b-1hsif532o3 var(--transition-base);
    backdrop-filter: blur(6px);
}

/* Modal Content */
.logout-modal-content[b-1hsif532o3] {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 0;
    max-width: 520px;
    width: 90%;
    box-shadow: var(--shadow-lg);
    animation: logoutSlideIn-b-1hsif532o3 var(--transition-slow);
    overflow: hidden;
    border: 1px solid var(--gray-dark);
}

/* Header */
.logout-modal-header[b-1hsif532o3] {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--color-text-white);
    padding: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: 12px;
}

    .logout-modal-header h3[b-1hsif532o3] {
        margin: 0;
        font-family: var(--font-heading);
        font-size: var(--text-md);
        font-weight: var(--font-semibold);
        letter-spacing: 0.3px;
        color: var(--color-text-white);
    }

.logout-header-icon[b-1hsif532o3] {
    opacity: 0.9;
}

/* Body */
.logout-modal-body[b-1hsif532o3] {
    padding: var(--spacing-lg);
    font-family: var(--font-primary);
    font-size: var(--text-base);
    color: var(--text-primary);
}

/* Alert Styles */
.logout-alert[b-1hsif532o3] {
    background: linear-gradient(135deg, rgba(186, 117, 23, 0.08) 0%, rgba(212, 146, 42, 0.04) 100%) !important;
    border-left: 4px solid var(--warning) !important;
    border-radius: var(--radius-md) !important;
}

/* Reason Box */
.logout-reason-box[b-1hsif532o3] {
    background: var(--color-background);
    border: 1px solid var(--gray-dark);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.logout-reason-item[b-1hsif532o3] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.logout-reason-icon[b-1hsif532o3] {
    color: var(--warning);
    margin-top: 2px;
    flex-shrink: 0;
}

.logout-reason-text[b-1hsif532o3] {
    flex: 1;
}

.logout-reason-label[b-1hsif532o3] {
    color: var(--text-secondary);
    text-transform: capitalize;
    font-weight: var(--font-semibold);
    font-size: var(--text-xs);
    font-family: var(--font-primary);
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 4px;
}

/* Countdown Section */
.logout-countdown-section[b-1hsif532o3] {
    text-align: center;
    padding: 12px 0;
}

.logout-countdown-container[b-1hsif532o3] {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logout-countdown-svg[b-1hsif532o3] {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.logout-countdown-bg[b-1hsif532o3] {
    fill: none;
    stroke: var(--gray-dark);
    stroke-width: 8;
}

.logout-countdown-progress[b-1hsif532o3] {
    fill: none;
    stroke: var(--primary);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 283;
    transition: stroke-dashoffset var(--transition-fast);
}

.logout-countdown-text[b-1hsif532o3] {
    position: relative;
    z-index: 1;
    text-align: center;
}

.logout-countdown-number[b-1hsif532o3] {
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: var(--leading-tight);
}

.logout-countdown-label[b-1hsif532o3] {
    font-size: var(--text-xs);
    font-family: var(--font-primary);
    color: var(--text-secondary);
    text-transform: capitalize;
    font-weight: var(--font-semibold);
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* Info Section */
.logout-info-section[b-1hsif532o3] {
    margin: 12px 0;
}

.logout-info-list[b-1hsif532o3] {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .logout-info-list li[b-1hsif532o3] {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 8px 0;
        color: var(--text-primary); 
        font-size: var(--text-base);
        font-family: var(--font-primary);
    }

        .logout-info-list li:not(:last-child)[b-1hsif532o3] {
            padding-bottom: 12px;
        }

    .logout-info-list :is(svg)[b-1hsif532o3] {
        color: var(--success); 
        flex-shrink: 0;
    }

/* Footer */
.logout-modal-footer[b-1hsif532o3] {
    padding: 20px var(--spacing-lg);
    border-top: 1px solid var(--gray-dark);
    background: var(--color-background);
}

/* Animations */
@keyframes logoutFadeIn-b-1hsif532o3 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes logoutSlideIn-b-1hsif532o3 {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 600px) {
    .logout-modal-content[b-1hsif532o3] {
        max-width: 95vw;
        width: 95vw;
    }

    .logout-modal-header[b-1hsif532o3] {
        padding: 20px;
    }

        .logout-modal-header h3[b-1hsif532o3] {
            font-size: var(--text-base);
        }

    .logout-modal-body[b-1hsif532o3] {
        padding: 20px;
    }

    .logout-countdown-number[b-1hsif532o3] {
        font-size: var(--text-2xl);
    }

    .logout-countdown-container[b-1hsif532o3] {
        width: 120px;
        height: 120px;
    }

    .logout-info-list li[b-1hsif532o3] {
        font-size: var(--text-sm);
    }
}

/* Dark Mode Support */
.mud-theme-dark .logout-modal-content[b-1hsif532o3] {
    background: var(--primary-dark);
    border-color: var(--primary-light);
}

.mud-theme-dark .logout-modal-footer[b-1hsif532o3] {
    background: var(--primary);
    border-color: var(--primary-light);
}

.mud-theme-dark .logout-reason-box[b-1hsif532o3] {
    background: var(--primary-dark);
    border-color: var(--primary-light);
}

.mud-theme-dark .logout-info-list li[b-1hsif532o3] {
    color: var(--color-text-light);
}

.mud-theme-dark .logout-reason-label[b-1hsif532o3] {
    color: var(--gray-light);
}
/* /Dialogs/Authentication/SessionExistsDialog.razor.rz.scp.css */
/* Session Exists Dialog - Uses Global Color Variables */

/* Backdrop */
.session-modal-backdrop[b-1d3uswxb0x] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--backdrop-color-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: sessionFadeIn-b-1d3uswxb0x var(--transition-base);
    backdrop-filter: blur(4px);
}

/* Modal Content */
.session-modal-content[b-1d3uswxb0x] {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 0;
    max-width: 520px;
    width: 90%;
    box-shadow: var(--shadow-lg);
    animation: sessionSlideIn-b-1d3uswxb0x var(--transition-slow);
    overflow: hidden;
    border: 1px solid var(--gray-dark);
}

/* Header */
.session-modal-header[b-1d3uswxb0x] {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .session-modal-header h3[b-1d3uswxb0x] {
        margin: 0;
        font-size: 1.3rem;
        font-weight: 600;
        letter-spacing: 0.3px;
    }

.session-header-icon[b-1d3uswxb0x] {
    opacity: 0.9;
}

/* Body */
.session-modal-body[b-1d3uswxb0x] {
    padding: 24px;
}

/* Alert Styles */
.session-alert[b-1d3uswxb0x] {
    background: linear-gradient(135deg, rgba(24, 95, 165, 0.08) 0%, rgba(58, 125, 192, 0.04) 100%) !important;
    border-left: 4px solid var(--info) !important;
    border-radius: var(--radius-md) !important;
}

.session-warning-alert[b-1d3uswxb0x] {
    background: linear-gradient(135deg, rgba(186, 117, 23, 0.08) 0%, rgba(212, 146, 42, 0.04) 100%) !important;
    border-left: 4px solid var(--warning) !important;
    border-radius: var(--radius-md) !important;
}

/* Details Box */
.session-details-box[b-1d3uswxb0x] {
    background: var(--color-background);
    border: 1px solid var(--gray-dark);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.session-detail-item[b-1d3uswxb0x] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.session-detail-icon[b-1d3uswxb0x] {
    color: var(--success);
    margin-top: 2px;
    flex-shrink: 0;
}

.session-detail-text[b-1d3uswxb0x] {
    flex: 1;
}

.session-detail-label[b-1d3uswxb0x] {
    color: var(--text-secondary);
    text-transform: capitalize;
    font-weight: var(--font-semibold);
    font-size: var(--text-xs);
    font-family: var(--font-primary);
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 4px;
}

/* Action Info */
.session-action-info[b-1d3uswxb0x] {
    margin: 12px 0;
}

.session-info-list[b-1d3uswxb0x] {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .session-info-list li[b-1d3uswxb0x] {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 8px 0;
        color: var(--text-primary); 
        font-size: var(--text-base);
        font-family: var(--font-primary);
    }

        .session-info-list li:not(:last-child)[b-1d3uswxb0x] {
            padding-bottom: 12px;
        }

    .session-info-list :is(svg)[b-1d3uswxb0x] {
        color: var(--success);
        flex-shrink: 0;
    }

/* Footer */
.session-modal-footer[b-1d3uswxb0x] {
    padding: 20px var(--spacing-lg);
    display: flex;
    gap: 12px;
    justify-content: space-between;
    border-top: 1px solid var(--gray-dark);
    background: var(--color-background);
}

/* Animations */
@keyframes sessionFadeIn-b-1d3uswxb0x {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes sessionSlideIn-b-1d3uswxb0x {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 600px) {
    .session-modal-content[b-1d3uswxb0x] {
        max-width: 95vw;
        width: 95vw;
    }

    .session-modal-header[b-1d3uswxb0x] {
        padding: 20px;
    }

        .session-modal-header h3[b-1d3uswxb0x] {
            font-size: 1.1rem;
        }

    .session-modal-body[b-1d3uswxb0x] {
        padding: 20px;
    }

    .session-modal-footer[b-1d3uswxb0x] {
        flex-direction: column;
        gap: 10px;
    }

    .session-info-list li[b-1d3uswxb0x] {
        font-size: 0.9rem;
    }
}

/* Dark Mode Support */
.mud-theme-dark .session-modal-content[b-1d3uswxb0x] {
    background: var(--primary-dark);
    border-color: var(--primary-light);
}

.mud-theme-dark .session-modal-footer[b-1d3uswxb0x] {
    background: var(--primary);
    border-color: var(--primary-light);
}

.mud-theme-dark .session-details-box[b-1d3uswxb0x] {
    background: var(--primary-dark);
    border-color: var(--primary-light);
}

.mud-theme-dark .session-info-list li[b-1d3uswxb0x] {
    color: var(--color-text-light);
}

.mud-theme-dark .session-detail-label[b-1d3uswxb0x] {
    color: var(--gray-light);
}
/* /Pages/Auctions/AuctionFloor.razor.rz.scp.css */
body[b-zdmoausgje] {
    background-color: var(--color-ui-background);
}

.qf-page *[b-zdmoausgje], .qf-page *[b-zdmoausgje]::before, .qf-page *[b-zdmoausgje]::after {
    box-sizing: border-box;
}
/* Header */
.qf-sticky-header[b-zdmoausgje] {
    position: sticky;
    top: 53px;
    z-index: 200;
    background: var(--color-surface);
    border-bottom: 1px solid rgba(39,35,92,0.10);
    box-shadow: var(--shadow-sm);
    padding: 8px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    min-height: 52px;
}

.qf-header-title[b-zdmoausgje] {
    font-size: var(--text-base);
    font-weight: var(--font-bold);
    font-family: var(--font-heading);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

    .qf-header-title[b-zdmoausgje]::before {
        content: '';
        display: inline-block;
        width: 4px;
        height: 18px;
        background: var(--primary);
        border-radius: 2px;
        flex-shrink: 0;
    }

.qf-header-spacer[b-zdmoausgje] {
    flex: 1;
}

/* Balances */
.mw-balance-chip[b-zdmoausgje] {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--color-ui-background);
    border: 1.5px solid rgba(39,35,92,0.12);
    border-radius: var(--radius-sm);
    padding: 5px 14px;
    cursor: pointer;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
    min-width: 0;
    user-select: none;
}

    .mw-balance-chip:hover[b-zdmoausgje] {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(39,35,92,0.08);
    }

.mw-balance-label[b-zdmoausgje] {
    font-size: var(--text-xs);
    font-weight: var(--font-bold);
    color: var(--text-secondary);
    text-transform: capitalize;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.mw-balance-value[b-zdmoausgje] {
    font-size: var(--text-sm);
    font-weight: var(--font-bold);
    white-space: nowrap;
    color: var(--success);
}

    .mw-balance-value.blocked[b-zdmoausgje] {
        color: var(--secondary);
    }

/* Connection status dot */
.qf-status-dot[b-zdmoausgje] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

    .qf-status-dot.connected[b-zdmoausgje] {
        background: var(--success);
        box-shadow: 0 0 0 3px rgba(59,109,17,0.18);
    }

    .qf-status-dot.disconnected[b-zdmoausgje] {
        background: var(--danger);
        box-shadow: 0 0 0 3px rgba(163,45,45,0.18);
    }

    .qf-status-dot.reconnecting[b-zdmoausgje] {
        background: var(--warning);
        box-shadow: 0 0 0 3px rgba(186,117,23,0.18);
    }

/* Connected label */
.qf-conn-label[b-zdmoausgje] {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: var(--text-xs);
    font-weight: var(--font-bold);
    color: var(--success);
    background: var(--success-bg);
    border: 1px solid rgba(59,109,17,0.20);
    border-radius: 50px;
    padding: 4px 12px;
}

    .qf-conn-label.disconnected[b-zdmoausgje] {
        color: var(--danger);
        background: var(--danger-bg);
        border-color: rgba(163,45,45,0.20);
    }

    .qf-conn-label.reconnecting[b-zdmoausgje] {
        color: var(--warning);
        background: var(--warning-bg, #FAEEDA);
        border-color: rgba(186,117,23,0.20);
    }

/*Toolbar search row */
.qf-toolbar[b-zdmoausgje] {
    background: var(--color-surface);
    border-bottom: 1px solid rgba(39,35,92,0.08);
    padding: 8px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.qf-search-pill[b-zdmoausgje] {
    flex: 1;
    background: var(--color-background);
    border: 1.5px solid rgba(39,35,92,0.12);
    border-radius: 50px;
    padding: 0 16px;
    height: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

    .qf-search-pill:focus-within[b-zdmoausgje] {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(39,35,92,0.08);
        background: var(--color-surface);
    }

    .qf-search-pill input[b-zdmoausgje] {
        border: none;
        outline: none;
        background: transparent;
        font-size: var(--text-sm);
        font-family: var(--font-primary);
        color: var(--text-primary);
        width: 100%;
    }

        .qf-search-pill input[b-zdmoausgje]::placeholder {
            color: var(--text-secondary);
            opacity: 0.65;
        }

/* Auction type color  strip */
.qf-type-legend[b-zdmoausgje] {
    background: var(--color-surface);
    border-bottom: 1px solid rgba(39,35,92,0.07);
    padding: 6px 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
    font-size: var(--text-xs);
    color: var(--text-secondary);
}

.qf-legend-label[b-zdmoausgje] {
    font-weight: var(--font-semibold);
    margin-right: 4px;
    color: var(--text-secondary);
}

.qf-legend-item[b-zdmoausgje] {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: var(--text-xs);
    font-weight: var(--font-medium);
    color: var(--text-secondary);
    padding: 2px 8px;
}

.qf-legend-dot[b-zdmoausgje] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* dot colors — matching header strip colors exactly */
.dot-quote[b-zdmoausgje] {
    background: var(--warning-dark);
}

.dot-french[b-zdmoausgje] {
    background: var(--primary);
}

.dot-frenchra[b-zdmoausgje] {
    background: var(--midnight-cyan);
}

.dot-round[b-zdmoausgje] {
    background: var(--tertiary);
}

.dot-group[b-zdmoausgje] {
    background: var(--info);
}

.dot-ended[b-zdmoausgje] {
    background: var(--gray-dark);
}

.qf-content[b-zdmoausgje] {
    padding: 14px 20px;
    background: var(--color-ui-background);
}

/* Auction card */
.qf-card[b-zdmoausgje] {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    border: 1.5px solid rgba(39,35,92,0.09);
    box-shadow: var(--shadow-sm);
    margin-bottom: 16px;
    display: flex;
    overflow: hidden;
    transition: box-shadow var(--transition-base), border-color var(--transition-base);
}

    .qf-card:hover[b-zdmoausgje] {
        box-shadow: var(--shadow-md);
        border-color: rgba(39,35,92,0.16);
    }
    /* Group card stacks vertically */
    .qf-card.group-card[b-zdmoausgje] {
        flex-direction: column;
    }

/* Left content panel */
.qf-left[b-zdmoausgje] {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

/* Card header strip */
.qf-header-strip[b-zdmoausgje] {
    padding: 9px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    background: var(--primary);
    color: var(--color-text-white);
    position: relative;
}

    .qf-header-strip.hdr-quote[b-zdmoausgje] {
        background: var(--warning-dark);
    }

    .qf-header-strip.hdr-french[b-zdmoausgje] {
        background: var(--primary);
    }

    .qf-header-strip.hdr-frenchra[b-zdmoausgje] {
        background: var(--midnight-cyan);
    }

    .qf-header-strip.hdr-round[b-zdmoausgje] {
        background: var(--tertiary);
    }

    .qf-header-strip.hdr-group[b-zdmoausgje] {
        background: var(--info);
    }

    .qf-header-strip.hdr-ended[b-zdmoausgje] {
        background: var(--gray-dark);
    }

/* Header cells */
.hdr-cell[b-zdmoausgje] {
    display: flex;
    flex-direction: column;
    gap: 1px;
    padding: 0 10px;
    border-right: 1px solid rgba(255,255,255,0.20);
}

    .hdr-cell:first-child[b-zdmoausgje] {
        padding-left: 0;
    }

    .hdr-cell:last-of-type[b-zdmoausgje] {
        border-right: none;
    }

.hdr-cell-label[b-zdmoausgje] {
    font-size: var(--text-xs);
    font-weight: var(--font-regular);
    opacity: 0.72;
    line-height: 1;
    white-space: nowrap;
}

.hdr-cell-value[b-zdmoausgje] {
    font-size: var(--text-sm);
    font-weight: var(--font-bold);
    color: var(--color-text-white);
    white-space: nowrap;
    line-height: 1.2;
}
/* Location highlighted in header */
.hdr-location[b-zdmoausgje] {
    background: rgba(255,255,255,0.22);
    border-radius: 4px;
    padding: 1px 7px;
    font-weight: var(--font-bold);
    font-size: var(--text-xs);
}
/* Base price highlighted */
.hdr-price[b-zdmoausgje] {
    color: var(--color-text-white);
    font-weight: var(--font-bold);
}

/* Type badge in header top-right */
.hdr-type-badge[b-zdmoausgje] {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hdr-badge[b-zdmoausgje] {
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: var(--radius-sm);
    padding: 3px 10px;
    font-size: var(--text-xs);
    font-weight: var(--font-bold);
    color: var(--color-text-white);
    white-space: nowrap;
}

/* Card body  */
.qf-body[b-zdmoausgje] {
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Description label + truncatable text */
.qf-desc-row[b-zdmoausgje] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.qf-desc-label[b-zdmoausgje] {
    font-size: var(--text-xs);
    font-weight: var(--font-bold);
    color: var(--text-secondary);
    letter-spacing: 0.04em;
}

.qf-desc-text[b-zdmoausgje] {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: var(--leading-normal);
}

.qf-readmore[b-zdmoausgje] {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    color: var(--secondary);
    text-decoration: underline;
    margin-left: 4px;
}

/* Time row */
.qf-time-row[b-zdmoausgje] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--text-secondary);
    flex-wrap: wrap;
}
/* Timer — plain text, no box/pill */
.qf-timer[b-zdmoausgje] {
    font-size: var(--text-base);
    font-weight: var(--font-bold);
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .qf-timer.urgent[b-zdmoausgje] {
        color: var(--danger);
    }

    .qf-timer.pending[b-zdmoausgje] {
        color: var(--success);
    }

    .qf-timer.ended[b-zdmoausgje] {
        color: var(--text-secondary);
    }
/* Timer icon (small square clock icon before time) */
.qf-timer-icon[b-zdmoausgje] {
    width: 14px;
    height: 14px;
    opacity: 0.55;
}
/* Extension — plain inline text, no pill */
.qf-ext[b-zdmoausgje] {
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--danger);
    margin-left: 4px;
}

/* Data grid */
.qf-grid[b-zdmoausgje] {
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(39,35,92,0.09);
    font-size: var(--text-xs);
}

.qf-grid-head[b-zdmoausgje] {
    background: var(--color-background);
    display: flex;
    border-bottom: 1px solid rgba(39,35,92,0.09);
}

.qf-grid-row[b-zdmoausgje] {
    background: var(--color-surface);
    display: flex;
    border-bottom: 1px solid rgba(39,35,92,0.06);
}

    .qf-grid-row:last-child[b-zdmoausgje] {
        border-bottom: none;
    }

    .qf-grid-row.alt[b-zdmoausgje] {
        background: var(--color-background);
    }

.qf-gcol[b-zdmoausgje] {
    flex: 1;
    padding: 7px 6px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(39,35,92,0.07);
    line-height: 1.2;
    min-width: 0;
}

    .qf-gcol:last-child[b-zdmoausgje] {
        border-right: none;
    }

.qf-grid-head .qf-gcol[b-zdmoausgje] {
    font-weight: var(--font-bold);
    color: var(--text-primary);
    font-size: var(--text-xs);
    padding: 6px 4px;
}

.qf-grid-row .qf-gcol[b-zdmoausgje] {
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    font-size: var(--text-xs);
}
/* Semantic data colors */
.gcol-blue[b-zdmoausgje] {
    color: var(--info) !important;
}

.gcol-teal[b-zdmoausgje] {
    color: var(--tertiary) !important;
}

.gcol-red[b-zdmoausgje] {
    color: var(--danger) !important;
}

.gcol-green[b-zdmoausgje] {
    color: var(--success) !important;
}

.gcol-orange[b-zdmoausgje] {
    color: var(--success-dark) !important;
}

/* Right input panel */
.qf-right[b-zdmoausgje] {
    width: 200px;
    flex-shrink: 0;
    background: var(--color-background);
    border-left: 1.5px solid rgba(39,35,92,0.09);
    padding: 0px 12px;
    padding-bottom: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

/* Input label above the MudNumericField */
[b-zdmoausgje] .qf-input-label {
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    color: var(--text-secondary);
    margin-bottom: 2px;
    display: block;
}

/* Override MudNumericField to remove black/dark styling */
[b-zdmoausgje] .qf-input .mud-input-control {
    margin-top: 0 !important;
}

[b-zdmoausgje] .qf-input .mud-input-outlined-border {
    border-color: rgba(39,35,92,0.18) !important;
    border-radius: 15px !important;
}

[b-zdmoausgje] .qf-input .mud-input-root {
    color: var(--text-primary) !important;
    border-radius: 15px !important;
}

[b-zdmoausgje] .qf-input input {
    font-weight: var(--font-bold) !important;
    text-align: center !important;
    color: var(--text-primary) !important;
    font-family: var(--font-primary) !important;
}

[b-zdmoausgje] .qf-input .mud-input-root-outlined {
    background: var(--color-surface) !important;
    border-radius: 15px !important;
}

[b-zdmoausgje] .mud-input > input.mud-input-root-outlined,
[b-zdmoausgje] div.mud-input-slot.mud-input-root-outlined {
    padding: 9px 5px !important;
}

/* Disabled inputs — muted, locked appearance */
[b-zdmoausgje] .qf-input .mud-input-root-outlined.mud-disabled,
[b-zdmoausgje] .qf-input .mud-disabled input {
    color: var(--gray-dark, #C5C2DE) !important;
    -webkit-text-fill-color: var(--gray-dark, #C5C2DE) !important;
    background: var(--gray, #EEEDF6) !important;
    cursor: not-allowed !important;
}

    [b-zdmoausgje] .qf-input .mud-input-root-outlined.mud-disabled .mud-input-outlined-border {
        border-color: rgba(39,35,92,0.10) !important;
    }

/* Submit button */
[b-zdmoausgje] .qf-submit-btn {
    background: var(--primary) !important;
    color: var(--color-text-white) !important;
    font-family: var(--font-primary) !important;
    font-weight: var(--font-semibold) !important;
    border-radius: var(--radius-md) !important;
    /*height: 40px;*/
    width: 50%;
    box-shadow: none !important;
    letter-spacing: 0.01em !important;
    text-transform: none !important;
    transition: background var(--transition-fast) !important;
}

    [b-zdmoausgje] .qf-submit-btn:hover:not([disabled]) {
        background: var(--primary-light) !important;
    }

    [b-zdmoausgje] .qf-submit-btn:focus-visible {
        outline: 3px solid var(--primary-dark) !important;
        outline-offset: 2px !important;
    }
    /* Reverse auction submit — amber */
    [b-zdmoausgje] .qf-submit-btn.reverse {
        background: var(--midnight-cyan) !important;
        color: var(--color-text-white) !important;
    }

        [b-zdmoausgje] .qf-submit-btn.reverse:hover:not([disabled]) {
            background: var(--midnight-cyan-light) !important;
        }
    /* Group submit */
    [b-zdmoausgje] .qf-submit-btn.group-submit {
        background: var(--info) !important;
        color: var(--color-text-white) !important;
    }

        [b-zdmoausgje] .qf-submit-btn.group-submit:hover:not([disabled]) {
            background: var(--info-light) !important;
        }

        [b-zdmoausgje] .qf-submit-btn:disabled,
        [b-zdmoausgje] .qf-submit-btn.mud-disabled,
        [b-zdmoausgje] .qf-submit-btn.reverse:disabled,
        [b-zdmoausgje] .qf-submit-btn.reverse.mud-disabled,
        [b-zdmoausgje] .qf-submit-btn.group-submit:disabled,
        [b-zdmoausgje] .qf-submit-btn.group-submit.mud-disabled {
            background: var(--gray-dark) !important;
            color: var(--gray) !important;
            cursor: not-allowed !important;
            box-shadow: none !important;
            opacity: 1 !important;
        }

/* Bid Submit Dialog Confirm & all dialog MudBtn apply outline for clear vision */
[b-zdmoausgje] .qf-dlg-btn-submit {
    background: var(--primary) !important;
    color: var(--color-text-white) !important;
    border-color: var(--primary) !important;
}

    [b-zdmoausgje] .qf-dlg-btn-submit:hover {
        background: var(--primary-light) !important;
    }

[b-zdmoausgje] .qf-dlg-btn-cancel {
    color: var(--danger) !important;
    border-color: var(--danger) !important;
}

    [b-zdmoausgje] .qf-dlg-btn-cancel:hover {
        background: var(--danger-bg) !important;
    }

/* focus ring via box-shadow so it isn't clipped by dialog overflow */
[b-zdmoausgje] .qf-dlg-btn:focus {
    box-shadow: 0 0 0 3px rgba(39,35,92,0.35) !important;
    outline: none !important;
}

[b-zdmoausgje] .qf-dlg-btn-cancel:focus {
    /*box-shadow: 0 0 0 3px rgba(163,45,45,0.30) !important;*/
    box-shadow: 0 0 0 4px #198754 !important;
    background: var(--danger-bg) !important;
}

[b-zdmoausgje] .qf-dlg-btn-submit:focus {
    /*background: var(--primary-light) !important;*/
    background: #198754 !important
}

/* Card bid message */
.qf-bid-msg[b-zdmoausgje] {
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    /*padding: 5px 8px;*/
    padding: 3px 7px;
    border-radius: var(--radius-sm);
    border-left: 3px solid;
    line-height: var(--leading-normal);
    word-break: break-word;
}

.qf-bid-msg--success[b-zdmoausgje] {
    background: var(--success-bg);
    border-left-color: var(--success);
    color: var(--success-dark);
}

.qf-bid-msg--error[b-zdmoausgje] {
    background: var(--danger-bg);
    border-left-color: var(--danger);
    color: var(--danger-dark);
}

/* Group scrollable table */
.qf-group-scroll[b-zdmoausgje] {
    max-height: 360px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}

    .qf-group-scroll[b-zdmoausgje]::-webkit-scrollbar {
        width: var(--scrollbar-width);
    }

    .qf-group-scroll[b-zdmoausgje]::-webkit-scrollbar-track {
        background: var(--scrollbar-track);
    }

    .qf-group-scroll[b-zdmoausgje]::-webkit-scrollbar-thumb {
        background: var(--scrollbar-thumb);
        border-radius: 3px;
    }

        .qf-group-scroll[b-zdmoausgje]::-webkit-scrollbar-thumb:hover {
            background: var(--scrollbar-thumb-hover);
        }

.qf-group-confirm-scroll[b-zdmoausgje] {
    max-height: 320px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}

/* Empty state */
.qf-empty[b-zdmoausgje] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 64px 24px;
    text-align: center;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 1.5px dashed rgba(39,35,92,0.15);
}

/* === FAB DOCK === */
.qf-fab-dock[b-zdmoausgje] {
    position: fixed;
    bottom: 10px;
    right: 5px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

/* Toggle Button */
.qf-fab-dock-toggle[b-zdmoausgje] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    outline: none;
    cursor: pointer;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

    .qf-fab-dock-toggle:hover[b-zdmoausgje] {
        background: var(--primary-light);
        transform: scale(1.06);
    }

/* FAB Items Container */
.qf-fab-dock-items[b-zdmoausgje] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(8px);
    transition: max-height var(--transition-slow), opacity var(--transition-base), transform var(--transition-base);
}

    /* Open State */
    .qf-fab-dock-items.open[b-zdmoausgje] {
        max-height: 220px;
        opacity: 1;
        transform: translateY(0);
    }

/* Scroll-to-top  */
.scroll-to-top-btn[b-zdmoausgje] {
    position: fixed;
    bottom: 60px;
    right: 6px;
    z-index: 998;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--color-text-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

    .scroll-to-top-btn.visible[b-zdmoausgje] {
        opacity: 1;
        pointer-events: auto;
    }

    .scroll-to-top-btn:hover[b-zdmoausgje] {
        background: var(--secondary-light);
    }

/* Responsive — Tablet ≤ 900px */
@media (max-width: 900px) {
    .qf-toolbar[b-zdmoausgje] {
        padding: 8px 12px;
    }

    .qf-content[b-zdmoausgje] {
        padding: 10px 10px;
    }

    .qf-type-legend[b-zdmoausgje] {
        padding: 6px 12px;
        gap: 2px;
    }

    .qf-card[b-zdmoausgje] {
        flex-direction: column;
    }

    .qf-right[b-zdmoausgje] {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        border-left: none;
        border-top: 1.5px solid rgba(39,35,92,0.09);
        padding: 10px 12px;
        gap: 8px;
    }

    .qf-bid-msg[b-zdmoausgje] {
        width: 100%;
        border-left: none;
        border-bottom: 3px solid;
        border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    }

    .qf-bid-msg--success[b-zdmoausgje] {
        border-bottom-color: var(--success);
    }

    .qf-bid-msg--error[b-zdmoausgje] {
        border-bottom-color: var(--danger);
    }

    .qf-grid[b-zdmoausgje] {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .qf-grid-head[b-zdmoausgje], .qf-grid-row[b-zdmoausgje] {
        min-width: 520px;
    }

    .qf-time-row[b-zdmoausgje] {
        flex-wrap: wrap;
        row-gap: 4px;
        font-size: var(--text-xs);
    }

    .qf-timer[b-zdmoausgje] {
        font-size: var(--text-sm);
    }

    .qf-header-strip[b-zdmoausgje] {
        flex-wrap: wrap;
        gap: 4px 10px;
        font-size: var(--text-xs);
    }

    .hdr-cell[b-zdmoausgje] {
        padding: 0 7px;
    }

    .mud-dialog-content[b-zdmoausgje] {
        padding: 0 !important;
    }
}

@media (max-width: 600px) {
    .qf-sticky-header[b-zdmoausgje] {
        flex-direction: column;
        align-items: stretch;
        padding: 8px 12px;
        gap: 8px;
    }

    .qf-header-spacer[b-zdmoausgje] {
        display: none;
    }

    .mw-balance-chip[b-zdmoausgje] {
        flex: 1;
        justify-content: center;
        min-width: 140px;
    }
}

@media (max-width: 480px) {
    .qf-header-strip[b-zdmoausgje] {
        font-size: 10px;
    }

    .qf-grid[b-zdmoausgje] {
        font-size: 10px;
    }

    .qf-grid-head[b-zdmoausgje], .qf-grid-row[b-zdmoausgje] {
        min-width: 440px;
    }

    .qf-timer[b-zdmoausgje] {
        font-size: var(--text-xs);
    }
}

@media (max-width: 410px) {
    .qf-header-title[b-zdmoausgje] {
        font-size: var(--text-sm) !important;
    }
}
/* /Pages/Auctions/QuickViewFloor.razor.rz.scp.css */
/* FULL STICKY HEADER WRAPPER */
.qf-full-header[b-rw9c5ewdaq] {
	position: sticky;
	top: 53px;
	z-index: 200;
	background: var(--color-surface);
	border-bottom: 1px solid rgba(39,35,92,0.10);
	box-shadow: var(--shadow-sm);
}

/* ── ROW 1: Title | Search | Balances ── */
.qf-header-row1[b-rw9c5ewdaq] {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 20px;
	flex-wrap: wrap;
	min-height: 52px;
	border-bottom: 1px solid rgba(39,35,92,0.07);
}

/* ── ROW 2: Status | Refresh | Columns | divider | Qty | Price | Apply | Submit ── */
.qf-header-row2[b-rw9c5ewdaq] {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 0 20px;
	flex-wrap: wrap;
	min-height: 52px;
	background: var(--color-ui-background);
}

/* Row 2 left/right groups */
.qf-row2-left[b-rw9c5ewdaq] {
	display: flex;
	align-items: center;
	gap: 8px;
}

.qf-row2-right[b-rw9c5ewdaq] {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-left: auto;
}

/* ── Title ── */
.qf-header-title[b-rw9c5ewdaq] {
	font-size: var(--text-base);
	font-weight: var(--font-bold);
	font-family: var(--font-heading);
	color: var(--text-primary);
	display: flex;
	align-items: center;
	gap: 8px;
	letter-spacing: 0.01em;
	white-space: nowrap;
}

	.qf-header-title[b-rw9c5ewdaq]::before {
		content: '';
		display: inline-block;
		width: 4px;
		height: 18px;
		background: var(--primary);
		border-radius: 2px;
		flex-shrink: 0;
	}

.qf-header-spacer[b-rw9c5ewdaq] {
	flex: 1;
}

/* Search pill */
.qf-search-pill[b-rw9c5ewdaq] {
	width: 240px;
	background: var(--color-background);
	border: 1.5px solid rgba(39,35,92,0.12);
	border-radius: 50px;
	padding: 0 14px;
	height: 38px;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

	.qf-search-pill:focus-within[b-rw9c5ewdaq] {
		border-color: var(--primary);
		box-shadow: 0 0 0 3px rgba(39,35,92,0.08);
		background: var(--color-surface);
	}

	.qf-search-pill input[b-rw9c5ewdaq] {
		border: none;
		outline: none;
		background: transparent;
		font-size: var(--text-sm);
		font-family: var(--font-primary);
		color: var(--text-primary);
		width: 100%;
	}

		.qf-search-pill input[b-rw9c5ewdaq]::placeholder {
			color: var(--text-secondary);
			opacity: 0.65;
		}

/* Balance chips  */
.mw-balance-chip[b-rw9c5ewdaq] {
	display: flex;
	align-items: center;
	gap: 8px;
	background: var(--color-ui-background);
	border: 1.5px solid rgba(39,35,92,0.12);
	border-radius: var(--radius-sm);
	padding: 5px 14px;
	cursor: pointer;
	transition: border-color var(--transition-base), box-shadow var(--transition-base);
	min-width: 0;
	user-select: none;
}

	.mw-balance-chip:hover[b-rw9c5ewdaq] {
		border-color: var(--primary);
		box-shadow: 0 0 0 3px rgba(39,35,92,0.08);
	}

.mw-balance-label[b-rw9c5ewdaq] {
	font-size: var(--text-xs);
	font-weight: var(--font-bold);
	color: var(--text-secondary);
	text-transform: capitalize;
	letter-spacing: 0.06em;
	white-space: nowrap;
}

.mw-balance-value[b-rw9c5ewdaq] {
	font-size: var(--text-sm);
	font-weight: var(--font-bold);
	white-space: nowrap;
	color: var(--success);
}

	.mw-balance-value.blocked[b-rw9c5ewdaq] {
		color: var(--secondary);
	}

/* Connection status pill */
.qf-status-dot[b-rw9c5ewdaq] {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	flex-shrink: 0;
}

	.qf-status-dot.connected[b-rw9c5ewdaq] {
		background: var(--success);
		box-shadow: 0 0 0 3px rgba(59,109,17,0.18);
	}

	.qf-status-dot.disconnected[b-rw9c5ewdaq] {
		background: var(--danger);
		box-shadow: 0 0 0 3px rgba(163,45,45,0.18);
	}

	.qf-status-dot.reconnecting[b-rw9c5ewdaq] {
		background: var(--warning);
		box-shadow: 0 0 0 3px rgba(186,117,23,0.18);
	}

.qf-conn-label[b-rw9c5ewdaq] {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: var(--text-xs);
	font-weight: var(--font-bold);
	color: var(--success);
	background: var(--success-bg);
	border: 1px solid rgba(59,109,17,0.20);
	border-radius: 50px;
	padding: 4px 12px;
	white-space: nowrap;
}

	.qf-conn-label.disconnected[b-rw9c5ewdaq] {
		color: var(--danger);
		background: var(--danger-bg);
		border-color: rgba(163,45,45,0.20);
	}

	.qf-conn-label.reconnecting[b-rw9c5ewdaq] {
		color: var(--warning);
		background: var(--warning-bg, #FAEEDA);
		border-color: rgba(186,117,23,0.20);
	}

/* Column toggle button (row 2)*/
.qf-col-toggle-wrap[b-rw9c5ewdaq] {
	position: relative;
}

.qf-col-toggle-btn[b-rw9c5ewdaq] {
	height: 36px;
	padding: 0 12px;
	background: var(--color-surface);
	border: 1.5px solid rgba(39,35,92,0.12);
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	gap: 6px;
	cursor: pointer;
	font-size: var(--text-sm);
	font-weight: var(--font-semibold);
	font-family: var(--font-primary);
	color: var(--primary);
	white-space: nowrap;
	transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

	.qf-col-toggle-btn:hover[b-rw9c5ewdaq] {
		border-color: var(--primary);
		box-shadow: 0 0 0 3px rgba(39,35,92,0.08);
	}

.qf-col-dropdown[b-rw9c5ewdaq] {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	z-index: 500;
	background: var(--color-surface);
	border: 1px solid rgba(39,35,92,0.10);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-lg);
	padding: 6px 0;
	min-width: 200px;
	display: none;
}

	.qf-col-dropdown.open[b-rw9c5ewdaq] {
		display: block;
	}

.qf-col-dropdown-header[b-rw9c5ewdaq] {
	padding: 6px 14px 8px;
	font-size: var(--text-xs);
	font-weight: var(--font-bold);
	text-transform: capitalize;
	letter-spacing: 0.08em;
	color: var(--text-secondary);
	border-bottom: 1px solid rgba(39,35,92,0.08);
	margin-bottom: 4px;
}

.qf-col-item[b-rw9c5ewdaq] {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 6px 14px;
	cursor: pointer;
	transition: background var(--transition-fast);
	font-size: var(--text-sm);
	color: var(--text-primary);
}

	.qf-col-item:hover[b-rw9c5ewdaq] {
		background: var(--color-background);
	}

	.qf-col-item.fixed-col[b-rw9c5ewdaq] {
		color: var(--text-secondary);
		cursor: not-allowed;
		font-style: italic;
		opacity: 0.6;
	}

	.qf-col-item input[type="checkbox"][b-rw9c5ewdaq] {
		width: 14px;
		height: 14px;
		accent-color: var(--primary);
		cursor: pointer;
		flex-shrink: 0;
	}

	.qf-col-item.fixed-col input[type="checkbox"][b-rw9c5ewdaq] {
		cursor: not-allowed;
	}

/* ── MudNumericField overrides in row2 ── */
[b-rw9c5ewdaq] .qf-row2-field .mud-input-control {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

[b-rw9c5ewdaq] .qf-row2-field .mud-input-outlined-border {
	border-radius: var(--radius-sm) !important;
	border-color: rgba(39,35,92,0.14) !important;
}

[b-rw9c5ewdaq] .qf-row2-field .mud-input-root {
	color: var(--text-primary) !important;
	height: 38px !important;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

[b-rw9c5ewdaq] .qf-row2-field input {
	font-weight: var(--font-bold) !important;
	text-align: center !important;
	font-family: var(--font-primary) !important;
	color: var(--text-primary) !important;
	height: 38px !important;
	padding: 0 8px !important;
}

[b-rw9c5ewdaq] .qf-row2-field .mud-input-label {
	top: 9px !important;
}

[b-rw9c5ewdaq] .qf-row2-field .mud-input-label-animated.mud-input-label-mudblazor {
	transform: translate(9px, -6px) scale(0.75) !important;
}

/* === TABLE WRAP === */
.qf-table-wrap[b-rw9c5ewdaq] {
	background: var(--color-surface);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
	border: 1px solid rgba(39,35,92,0.08);
	margin: 12px 0;
	overflow-x: auto;
	overflow-y: auto;
	max-height: calc(100vh - 210px);
}

/* === TABLE === */
.qf-table[b-rw9c5ewdaq] {
	/*width: max-content;*/
	/*width: auto;*/
	min-width: 100%;
	border-collapse: collapse;
	font-size: var(--text-sm);
	table-layout: fixed;
}

	.qf-table thead th[b-rw9c5ewdaq] {
		background: var(--primary);
		color: var(--color-text-white);
		font-weight: var(--font-semibold);
		font-size: var(--text-xs);
		letter-spacing: 0.06em;
		text-transform: capitalize;
		padding: 10px 8px;
		text-align: center;
		white-space: nowrap;
		position: sticky;
		top: 0;
		z-index: 10;
		border-right: 1px solid rgba(255,255,255,0.10);
		overflow: hidden;
	}

		.qf-table thead th:last-child[b-rw9c5ewdaq] {
			border-right: none;
		}

		.qf-table thead th[b-rw9c5ewdaq]::after {
			content: '';
			position: absolute;
			bottom: 0;
			left: 0;
			right: 0;
			height: 2px;
			background: var(--secondary);
		}

/* === RESIZE HANDLE === */
.col-resize-handle[b-rw9c5ewdaq] {
	position: absolute;
	top: 0;
	right: 0;
	width: 5px;
	height: 100%;
	cursor: col-resize;
	z-index: 20;
	background: transparent;
	transition: background var(--transition-fast);
	user-select: none;
}

	.col-resize-handle:hover[b-rw9c5ewdaq],
	.col-resize-handle.resizing[b-rw9c5ewdaq] {
		background: rgba(196,127,23,0.6);
	}

/* === TABLE BODY === */
.qf-table tbody td[b-rw9c5ewdaq] {
	font-size: var(--text-xs);
	font-weight : var(--font-semibold);
	padding: 7px 8px;
	text-align: center;
	vertical-align: middle;
	border-bottom: 1px solid rgba(39,35,92,0.06);
	white-space: nowrap;
	color: var(--text-primary);
	transition: background var(--transition-fast);
	overflow: hidden;
	text-overflow: ellipsis;
}

.qf-table tbody tr:last-child td[b-rw9c5ewdaq] {
	border-bottom: none;
}

.qf-table tbody tr:hover td[b-rw9c5ewdaq] {
	background: var(--color-card-hover) !important;
}

/* Row tints */
.row-french[b-rw9c5ewdaq] {
	background: var(--info-bg);
}

.row-frenchra[b-rw9c5ewdaq] {
	background: var(--danger-bg);
}

/* === TYPE BADGES === */
.type-badge[b-rw9c5ewdaq] {
	display: inline-flex;
	align-items: center;
	padding: 3px 8px;
	border-radius: var(--radius-sm);
	font-size: var(--text-xs);
	font-weight: var(--font-bold);
	letter-spacing: 0.04em;
	text-transform: capitalize;
	white-space: nowrap;
}

.type-french[b-rw9c5ewdaq] {
	background: var(--info-bg);
	color: var(--info);
}

.type-frenchra[b-rw9c5ewdaq] {
	background: var(--danger-bg);
	color: var(--danger);
}

/* === TIMER === */
.qf-timer[b-rw9c5ewdaq] {
	font-size: var(--text-xs);
	font-weight: var(--font-semibold);
	font-family: var(--font-heading);
	letter-spacing: 0.03em;
	display: inline-block;
	font-variant-numeric: tabular-nums;
}

	.qf-timer.ended[b-rw9c5ewdaq] {
		color: var(--danger);
	}

	.qf-timer.active[b-rw9c5ewdaq] {
		color: var(--primary);
	}

	.qf-timer.urgent[b-rw9c5ewdaq] {
		color: var(--danger);
	}

/* === NUMBERS === */
.qf-num[b-rw9c5ewdaq] {
	font-size: var(--text-xs);
	font-weight: var(--font-semibold);
}

	.qf-num.blue[b-rw9c5ewdaq] {
		color: var(--info);
	}

	.qf-num.teal[b-rw9c5ewdaq] {
		color: var(--tertiary);
	}

	.qf-num.red[b-rw9c5ewdaq] {
		color: var(--danger);
	}

	.qf-num.purple[b-rw9c5ewdaq] {
		color: var(--primary-light);
	}

/* === ROW MESSAGES === */
.msg-ok[b-rw9c5ewdaq] {
	color: var(--success);
	font-weight: var(--font-bold);
	font-size: var(--text-xs);
}

.msg-err[b-rw9c5ewdaq] {
	color: var(--danger);
	font-weight: var(--font-bold);
	font-size: var(--text-xs);
}

.msg-pending[b-rw9c5ewdaq] {
	color: var(--warning);
	font-size: var(--text-xs);
}

/* === EMPTY STATE === */
.qf-empty[b-rw9c5ewdaq] {
	padding: 60px 20px;
	text-align: center;
	background: var(--color-surface);
	border-radius: var(--radius-md);
	border: 1.5px dashed rgba(39,35,92,0.14);
	margin: 12px 0;
}

/* === VALUE BADGES === */
.rank-badge[b-rw9c5ewdaq] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--info-bg);
	color: var(--info);
	font-size: var(--text-xs);
	font-weight: var(--font-bold);
	padding: 2px 7px;
	border-radius: var(--radius-sm);
	min-width: 32px;
}

.alloc-badge[b-rw9c5ewdaq] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--success-bg);
	color: var(--success);
	font-size: var(--text-xs);
	font-weight: var(--font-bold);
	padding: 2px 7px;
	border-radius: var(--radius-sm);
	min-width: 40px;
}

.ext-badge[b-rw9c5ewdaq] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--color-background);
	color: var(--primary);
	font-size: var(--text-xs);
	font-weight: var(--font-bold);
	padding: 2px 7px;
	border-radius: var(--radius-sm);
	min-width: 36px;
}

/* === STATUS BADGES === */
.status-fill[b-rw9c5ewdaq] {
	background: var(--success-bg);
	color: var(--success);
	font-size: var(--text-xs);
	font-weight: var(--font-bold);
	padding: 2px 7px;
	border-radius: var(--radius-sm);
	display: inline-block;
}

.status-knkoff[b-rw9c5ewdaq] {
	background: var(--danger-bg);
	color: var(--danger);
	font-size: var(--text-xs);
	font-weight: var(--font-bold);
	padding: 2px 7px;
	border-radius: var(--radius-sm);
	display: inline-block;
}

.status-other[b-rw9c5ewdaq] {
	background: var(--color-background);
	color: var(--text-secondary);
	font-size: var(--text-xs);
	font-weight: var(--font-medium);
	padding: 2px 7px;
	border-radius: var(--radius-sm);
	display: inline-block;
}

/* === BEST / LAST PRICE === */
.best-price-val[b-rw9c5ewdaq] {
	font-size: var(--text-xs);
	font-weight: var(--font-bold);
	color: var(--danger);
	background: var(--danger-bg);
	padding: 2px 6px;
	border-radius: var(--radius-sm);
	display: inline-block;
}

.last-val[b-rw9c5ewdaq] {
	font-size: var(--text-xs);
	font-weight: var(--font-semibold);
	color: var(--info);
	background: var(--info-bg);
	padding: 2px 6px;
	border-radius: var(--radius-sm);
	display: inline-block;
}

/* === INPUT === */
.qf-input[b-rw9c5ewdaq] {
	width: 82px;
	height: 32px;
	border: 1.5px solid rgba(39,35,92,0.14);
	border-radius: var(--radius-sm);
	padding: 0 6px;
	font-size: var(--text-sm);
	font-family: var(--font-primary);
	color: var(--text-primary);
	background: var(--color-surface);
	outline: none;
	text-align: center;
	-moz-appearance: textfield;
	transition: border-color var(--transition-base), box-shadow var(--transition-base);
	box-sizing: border-box;
}

	.qf-input[b-rw9c5ewdaq]::-webkit-inner-spin-button,
	.qf-input[b-rw9c5ewdaq]::-webkit-outer-spin-button {
		-webkit-appearance: none;
		margin: 0;
	}

	.qf-input:focus[b-rw9c5ewdaq] {
		border-color: var(--primary);
		box-shadow: 0 0 0 2px rgba(39,35,92,0.12);
	}

	.qf-input:disabled[b-rw9c5ewdaq] {
		background: var(--color-background);
		color: var(--text-secondary);
		cursor: not-allowed;
		opacity: 0.6;
	}

/* === SUBMIT BUTTON === */
.qf-btn-submit[b-rw9c5ewdaq] {
	height: 30px;
	padding: 0 12px;
	background: var(--primary);
	color: var(--color-text-white);
	border: none;
	border-radius: var(--radius-sm);
	font-size: var(--text-xs);
	font-weight: var(--font-semibold);
	font-family: var(--font-primary);
	cursor: pointer;
	min-width: 60px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background var(--transition-base), opacity var(--transition-base);
}

	.qf-btn-submit:hover:not(:disabled)[b-rw9c5ewdaq] {
		background: var(--primary-light);
	}

	.qf-btn-submit:disabled[b-rw9c5ewdaq] {
		opacity: 0.4;
		cursor: not-allowed;
	}

/* === CSS SPINNER === */
.qf-spinner[b-rw9c5ewdaq] {
	display: inline-block;
	width: 12px;
	height: 12px;
	border: 2px solid rgba(255,255,255,0.35);
	border-top-color: #fff;
	border-radius: 50%;
	animation: qf-spin-b-rw9c5ewdaq 0.7s linear infinite;
}

@keyframes qf-spin-b-rw9c5ewdaq {
	to {
		transform: rotate(360deg);
	}
}

/* === FAB DOCK (replaces fixed floating buttons) === */
.qf-fab-dock[b-rw9c5ewdaq] {
	position: fixed;
	bottom: 10px;
	right: 5px;
	z-index: 999;
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: flex-end;
}

.qf-fab-dock-toggle[b-rw9c5ewdaq] {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: none;
	outline: none;
	cursor: pointer;
	background: var(--primary);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-lg);
	transition: all var(--transition-base);
}

	.qf-fab-dock-toggle:hover[b-rw9c5ewdaq] {
		background: var(--primary-light);
		transform: scale(1.06);
	}

.qf-fab-dock-items[b-rw9c5ewdaq] {
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: flex-end;
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	transition: max-height var(--transition-slow), opacity var(--transition-base);
}

	.qf-fab-dock-items.open[b-rw9c5ewdaq] {
		max-height: 200px;
		opacity: 1;
	}

/* === RESPONSIVE === */
@media (max-width: 786px) {
	.qf-header-row1[b-rw9c5ewdaq] {
		flex-direction: column;
		align-items: stretch;
		padding: 8px 12px;
		gap: 8px;
	}

	.qf-header-spacer[b-rw9c5ewdaq] {
		display: none;
	}

	.mw-balance-chip[b-rw9c5ewdaq] {
		flex: 1;
		justify-content: center;
		min-width: 140px;
	}

	.qf-search-pill[b-rw9c5ewdaq] {
		width: 100%;
		order: 3;
	}

	.qf-header-row2[b-rw9c5ewdaq] {
		flex-direction: column;
		align-items: stretch;
		padding: 8px 12px;
		gap: 8px;
	}

	.qf-table-wrap[b-rw9c5ewdaq] {
		max-height: calc(100vh - 240px);
	}
}

/* ── Mobile ── */
@media (max-width: 600px) {
	.qf-table[b-rw9c5ewdaq] {
		font-size: 0.70rem;
	}

	.qf-table-wrap[b-rw9c5ewdaq] {
		max-height: calc(100vh - 220px);
	}
}

/* ── Small mobile ── */
@media (max-width: 400px) {
	.qf-header-title[b-rw9c5ewdaq] {
		font-size: var(--text-sm);
	}

	.qf-conn-label[b-rw9c5ewdaq] {
		font-size: 10px;
		padding: 3px 8px;
	}

	.qf-row2-right[b-rw9c5ewdaq] {
		flex-wrap: wrap;
	}
}
/* /Pages/Index.razor.rz.scp.css */
@keyframes mw-fadeUp-b-0gabfwpbta {
	from {
		opacity: 0;
		transform: translateY(12px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes mw-slideIn-b-0gabfwpbta {
	from {
		opacity: 0;
		transform: translateX(16px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes mw-pulse-dot-b-0gabfwpbta {
	0%, 100% {
		opacity: 1;
		transform: scale(1);
	}

	50% {
		opacity: 0.4;
		transform: scale(0.65);
	}
}

/* === PAGE BASE === */
.mw-page[b-0gabfwpbta] {
	padding: 0;
	background: var(--color-ui-background);
	color: var(--text-primary);
}

	.mw-page *[b-0gabfwpbta], .mw-page *[b-0gabfwpbta]::before, .mw-page *[b-0gabfwpbta]::after {
		box-sizing: border-box;
	}

/* === STICKY HEADER === */
.mw-sticky-header[b-0gabfwpbta] {
	position: sticky;
	top: 53px;
	z-index: 200;
	background: var(--color-surface);
	border-bottom: 1px solid rgba(39,35,92,0.10);
	box-shadow: var(--shadow-sm);
	padding: 8px 20px;
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	min-height: 52px;
}

.mw-header-title[b-0gabfwpbta] {
	font-size: var(--text-base);
	font-weight: var(--font-bold);
	font-family: var(--font-heading);
	color: var(--text-primary);
	display: flex;
	align-items: center;
	gap: 8px;
	letter-spacing: 0.01em;
	white-space: nowrap;
}

	.mw-header-title[b-0gabfwpbta]::before {
		content: '';
		display: inline-block;
		width: 4px;
		height: 18px;
		background: var(--primary);
		border-radius: 2px;
		flex-shrink: 0;
	}

.mw-header-spacer[b-0gabfwpbta] {
	flex: 1;
}

/* Balance chips */
.mw-balance-chip[b-0gabfwpbta] {
	display: flex;
	align-items: center;
	gap: 8px;
	background: var(--color-ui-background);
	border: 1.5px solid rgba(39,35,92,0.12);
	border-radius: var(--radius-sm);
	padding: 5px 14px;
	cursor: pointer;
	transition: border-color var(--transition-base), box-shadow var(--transition-base);
	min-width: 0;
}

	.mw-balance-chip:hover[b-0gabfwpbta] {
		border-color: var(--primary);
		box-shadow: 0 0 0 3px rgba(39,35,92,0.08);
	}

.mw-balance-label[b-0gabfwpbta] {
	font-size: var(--text-xs);
	font-weight: var(--font-bold);
	color: var(--text-secondary);
	text-transform: capitalize;
	letter-spacing: 0.06em;
	white-space: nowrap;
}

.mw-balance-value[b-0gabfwpbta] {
	font-size: var(--text-sm);
	font-weight: var(--font-bold);
	white-space: nowrap;
	color: var(--success);
}

	.mw-balance-value.blocked[b-0gabfwpbta] {
		color: var(--secondary);
	}

/* === TOOLBAR === */
.mw-toolbar[b-0gabfwpbta] {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 20px;
	background: var(--color-surface);
	border-bottom: 1px solid rgba(39,35,92,0.08);
	flex-wrap: wrap;
}

.mw-toolbar-actions[b-0gabfwpbta] {
	display: flex;
	align-items: center;
	gap: 4px;
}

.mw-toolbar-divider[b-0gabfwpbta] {
	width: 1px;
	height: 22px;
	background: rgba(39,35,92,0.12);
	margin: 0 4px;
}

/* === CALENDAR POPOVER === */
.mw-calendar-anchor[b-0gabfwpbta] {
	position: relative;
	display: inline-flex;
}

.mw-calendar-popover[b-0gabfwpbta] {
	position: absolute;
	top: 42px;
	right: 0;
	z-index: 300;
	background: var(--color-surface);
	border: 1.5px solid rgba(39,35,92,0.12);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-lg);
	padding: 16px;
	min-width: 300px;
	animation: mw-fadeUp-b-0gabfwpbta 0.18s ease-out;
}

.mw-cal-header[b-0gabfwpbta] {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
}

.mw-cal-title[b-0gabfwpbta] {
	font-size: var(--text-sm);
	font-weight: var(--font-bold);
	font-family: var(--font-heading);
	color: var(--text-primary);
	letter-spacing: 0.01em;
}

.mw-cal-grid[b-0gabfwpbta] {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 2px;
	text-align: center;
}

.mw-cal-dayname[b-0gabfwpbta] {
	font-size: var(--text-xs);
	font-weight: var(--font-bold);
	color: var(--text-secondary);
	padding: 4px 0;
	text-transform: capitalize;
	letter-spacing: 0.05em;
	opacity: 0.6;
}

.mw-cal-cell[b-0gabfwpbta] {
	position: relative;
	padding: 6px 2px;
	font-size: 0.74rem;
	font-weight: var(--font-medium);
	color: var(--text-secondary);
	border-radius: var(--radius-sm);
}

	.mw-cal-cell.today[b-0gabfwpbta] {
		background: var(--color-background);
		font-weight: var(--font-bold);
		color: var(--primary);
	}

	.mw-cal-cell.empty[b-0gabfwpbta] {
		color: transparent;
	}

.mw-cal-badge[b-0gabfwpbta] {
	position: absolute;
	top: 1px;
	right: 1px;
	background: var(--primary);
	color: var(--color-text-white);
	font-size: 0.48rem;
	font-weight: var(--font-bold);
	min-width: 13px;
	height: 13px;
	line-height: 13px;
	border-radius: 6px;
	text-align: center;
	padding: 0 2px;
}

/* TAB BAR */
.mw-tab-bar[b-0gabfwpbta] {
	display: flex;
	align-items: center;
	gap: 0;
	background: var(--color-surface);
	border-bottom: 1px solid rgba(39,35,92,.08);
	padding: 0 20px;
}

.mw-select-all-pin[b-0gabfwpbta] {
	flex-shrink: 0;
	padding-right: 10px;
}

.mw-tabs-container[b-0gabfwpbta] {
	display: flex;
	align-items: stretch;
	flex: 1;
}

.mw-tab[b-0gabfwpbta] {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px;
	cursor: pointer;
	color: var(--text-secondary);
	font-weight: var(--font-semibold);
	border-bottom: 3px solid transparent;
	transition: all .2s ease;
	white-space: nowrap;
}

	.mw-tab:hover[b-0gabfwpbta] {
		background: var(--color-ui-background);
	}

	.mw-tab.active[b-0gabfwpbta] {
		color: var(--primary);
		border-bottom-color: var(--primary);
	}

.mw-tab-count[b-0gabfwpbta] {
	background: var(--color-background);
	border-radius: 6px;
	padding: 2px 8px;
	font-size: .75rem;
	font-weight: var(--font-bold);
}

.mw-tab.active .mw-tab-count[b-0gabfwpbta] {
	background: var(--primary);
	color: white;
}

.mw-selected-count[b-0gabfwpbta] {
	background: var(--color-background);
	color: var(--primary);
	border-radius: 6px;
	padding: 2px 8px;
	font-size: .7rem;
	font-weight: var(--font-bold);
}

/* === CONTENT AREA === */
.mw-content[b-0gabfwpbta] {
	padding: 14px 10px;
}

/* === AUCTION CARD === */
.auction-card[b-0gabfwpbta] {
	display: flex;
	align-items: stretch;
	background: var(--color-surface);
	border-radius: var(--radius-md);
	margin-bottom: 10px;
	box-shadow: var(--shadow-sm);
	border: 1.5px solid rgba(39,35,92,0.08);
	cursor: pointer;
	transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
	position: relative;
	min-height: 76px;
	overflow: hidden;
	animation: mw-fadeUp-b-0gabfwpbta 0.4s ease-out backwards;
}

	.auction-card:hover[b-0gabfwpbta] {
		border-color: var(--primary-light);
		box-shadow: var(--shadow-md);
		transform: translateY(-2px);
	}

	.auction-card.selected[b-0gabfwpbta] {
		border-color: var(--primary);
		background: var(--color-background);
		box-shadow: 0 4px 18px rgba(39,35,92,0.14);
	}

	.auction-card.in-progress[b-0gabfwpbta] {
		background: var(--success-bg);
		border-color: rgba(59,109,17,0.20);
	}

	/* Stagger delays */
	.auction-card:nth-child(1)[b-0gabfwpbta] {
		animation-delay: 0.04s;
	}

	.auction-card:nth-child(2)[b-0gabfwpbta] {
		animation-delay: 0.08s;
	}

	.auction-card:nth-child(3)[b-0gabfwpbta] {
		animation-delay: 0.12s;
	}

	.auction-card:nth-child(4)[b-0gabfwpbta] {
		animation-delay: 0.16s;
	}

	.auction-card:nth-child(5)[b-0gabfwpbta] {
		animation-delay: 0.20s;
	}

/* Checkbox column */
.ac-checkbox[b-0gabfwpbta] {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 4px 0 10px;
	flex-shrink: 0;
}

/* Left chevron badge — FIXED width so badge size never varies between cards */
.ac-badge[b-0gabfwpbta] {
	background: var(--primary);
	color: var(--color-text-white);
	padding: 12px 30px 12px 20px;
	width: 250px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%);
	flex-shrink: 0;
}

.ac-badge-title[b-0gabfwpbta] {
	font-size: var(--text-base);
	font-weight: var(--font-bold);
	font-family: var(--font-heading);
	letter-spacing: 0.02em;
	color: var(--color-text-white);
	line-height: 1.2;
	text-transform: capitalize;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ac-badge-subtitle[b-0gabfwpbta] {
	font-size: var(--text-xs);
	font-weight: var(--font-medium);
	color: rgba(255,255,255,0.75);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	letter-spacing: 0.02em;
}

.ac-readmore[b-0gabfwpbta] {
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	font-size: var(--text-xs);
	font-weight: var(--font-semibold);
	color: var(--secondary);
	text-decoration: underline;
	margin-left: 4px;
}

/* Details row */
.ac-details[b-0gabfwpbta] {
	display: flex;
	align-items: center;
	flex: 1;
	padding: 8px 12px 8px 18px;
	gap: 0;
	flex-wrap: wrap;
	min-width: 0;
}

.ac-cell[b-0gabfwpbta] {
	display: flex;
	flex-direction: column;
	padding: 4px 14px;
	min-width: 0;
	flex-shrink: 0;
	gap: 3px;
}

.ac-cell-label[b-0gabfwpbta] {
	font-size: var(--text-xs);
	font-weight: var(--font-bold);
	color: var(--text-secondary);
	white-space: nowrap;
	letter-spacing: 0.02em;
	text-transform: capitalize;
}

.ac-cell-value[b-0gabfwpbta] {
	font-size: var(--text-sm);
	color: var(--text-primary);
	font-weight: var(--font-medium);
	white-space: nowrap;
}

	.ac-cell-value.amber[b-0gabfwpbta] {
		color: var(--secondary);
		font-weight: var(--font-semibold);
	}

	.ac-cell-value.muted[b-0gabfwpbta] {
		color: var(--text-secondary);
	}

	/* Generic single-line truncation — used on every value cell that can vary
   in length (Location, Base Price, Qty fields, Concluded Price, etc.) so no
   single card can stretch taller/wider than its neighbours. Pair with a
   MudTooltip so the full value is still available on hover. */
	.ac-cell-value.ac-truncate[b-0gabfwpbta] {
		display: inline-block;
		min-width: 65px;
		max-width: 65px;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		vertical-align: bottom;
	}

	/* Wider truncation variant for the start–end schedule range, which is
   naturally longer text but still needs a hard cap. */
	.ac-cell-value.ac-truncate-wide[b-0gabfwpbta] {
		display: inline-block;
		min-width : 250px;
		max-width: 250px;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		vertical-align: bottom;
	}

	.ac-cell-value.ac-truncate-large[b-0gabfwpbta] {
		display: inline-block;
		min-width: 115px;
		max-width: 115px;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		vertical-align: bottom;
	}

/* Description wrapping */
.ac-cell.ac-cell-desc .ac-cell-value[b-0gabfwpbta] {
	white-space: normal;
	max-width: 150px;
	line-height: 1.35;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Icon + text cell */
.ac-cell.ac-with-icon[b-0gabfwpbta] {
	flex-direction: row;
	align-items: center;
	gap: 5px;
}

	.ac-cell.ac-with-icon .ac-cell-value[b-0gabfwpbta] {
		color: var(--text-primary);
		font-weight: var(--font-semibold);
	}

/* Vertical divider between cells */
.ac-divider[b-0gabfwpbta] {
	width: 1px;
	height: 32px;
	background: rgba(39,35,92,0.10);
	border-radius: 1px;
	flex-shrink: 0;
	align-self: center;
}

/* Right side */
.ac-right[b-0gabfwpbta] {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 0 14px 0 8px;
	flex-shrink: 0;
	border-left: 1px dashed rgba(39,35,92,0.10);
}

/* === STATUS BADGE === */
.status-badge[b-0gabfwpbta] {
	padding: 4px 10px;
	border-radius: var(--radius-sm);
	font-weight: var(--font-bold);
	font-size: var(--text-xs);
	text-align: center;
	white-space: nowrap;
	letter-spacing: 0.04em;
	text-transform: capitalize;
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

	.status-badge[b-0gabfwpbta]::before {
		content: '';
		width: 6px;
		height: 6px;
		border-radius: 50%;
		background: currentColor;
		flex-shrink: 0;
		animation: mw-pulse-dot-b-0gabfwpbta 1.6s infinite;
	}

	.status-badge.in-progress[b-0gabfwpbta] {
		background: var(--success-bg);
		color: var(--success);
		border: 1px solid rgba(59,109,17,0.25);
	}

	.status-badge.ended[b-0gabfwpbta] {
		background: var(--danger-bg);
		color: var(--danger);
		border: 1px solid rgba(163,45,45,0.20);
	}

		.status-badge.ended[b-0gabfwpbta]::before {
			animation: none;
		}

	.status-badge.upcoming[b-0gabfwpbta] {
		background: var(--info-bg);
		color: var(--info);
		border: 1px solid rgba(24,95,165,0.20);
	}

/* === LIVE TIMER === */
.mw-timer[b-0gabfwpbta] {
	font-size: var(--text-md);
	font-weight: var(--font-bold);
	color: var(--text-primary);
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
	font-family: var(--font-heading);
}

	.mw-timer.pending[b-0gabfwpbta] {
		color: var(--info);
	}

	.mw-timer.urgent[b-0gabfwpbta] {
		color: var(--danger);
	}

	.mw-timer.ended[b-0gabfwpbta] {
		color: var(--danger);
		opacity: 0.7;
	}

/* === TYPE BADGE === */
.type-badge[b-0gabfwpbta] {
	padding: 3px 9px;
	border-radius: var(--radius-sm);
	font-weight: var(--font-bold);
	font-size: var(--text-xs);
	text-align: center;
	white-space: nowrap;
	display: inline-block;
	letter-spacing: 0.05em;
	text-transform: capitalize;
}

	.type-badge.quote[b-0gabfwpbta] {
		background: var(--color-background);
		color: var(--primary);
		border: 1px solid rgba(39,35,92,0.18);
	}

	.type-badge.round[b-0gabfwpbta] {
		background: var(--secondary-bg);
		color: var(--secondary);
		border: 1px solid rgba(196,127,23,0.20);
	}

	.type-badge.french[b-0gabfwpbta] {
		background: var(--info-bg);
		color: var(--info);
		border: 1px solid rgba(24,95,165,0.20);
	}

	.type-badge.frenchra[b-0gabfwpbta] {
		background: var(--danger-bg);
		color: var(--danger);
		border: 1px solid rgba(163,45,45,0.18);
	}

	.type-badge.group[b-0gabfwpbta] {
		background: var(--tertiary-bg, #E0F5F2);
		color: var(--tertiary, #0E8C7A);
		border: 1px solid rgba(14,140,122,0.20);
	}

/* === EMPTY STATE === */
.mw-empty[b-0gabfwpbta] {
	text-align: center;
	padding: 70px 20px;
	animation: mw-fadeUp-b-0gabfwpbta 0.4s ease-out;
	background: var(--color-surface);
	border-radius: var(--radius-lg);
	border: 1.5px dashed rgba(39,35,92,0.14);
	margin: 8px 0;
}

/* === FAB === */
.mw-fab-container[b-0gabfwpbta] {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 1000;
	display: flex;
	flex-direction: column;
	gap: 10px;
	animation: mw-slideIn-b-0gabfwpbta 0.3s ease-out;
}

.mw-fab[b-0gabfwpbta] {
	border-radius: var(--radius-md) !important;
	font-weight: var(--font-bold) !important;
	font-size: var(--text-sm) !important;
	text-transform: none !important;
	letter-spacing: 0.01em !important;
	box-shadow: var(--shadow-lg) !important;
	transition: transform var(--transition-base), box-shadow var(--transition-base) !important;
}

	.mw-fab:hover[b-0gabfwpbta] {
		transform: translateY(-2px) !important;
		box-shadow: 0 12px 32px rgba(39,35,92,0.28) !important;
	}

/* === LOADING === */
.mw-loading[b-0gabfwpbta] {
	display: flex;
	justify-content: center;
	padding: 60px 0;
	animation: mw-fadeUp-b-0gabfwpbta 0.3s ease-out;
}

/* === RESPONSIVE === */
@media (max-width: 1100px) {
	.ac-cell[b-0gabfwpbta] {
		padding: 4px 10px;
	}

	.ac-badge[b-0gabfwpbta] {
		width: 180px;
		padding: 12px 26px 12px 16px;
	}
}

@media (max-width: 900px) {
	.auction-card[b-0gabfwpbta] {
		flex-wrap: wrap;
	}

	.ac-details[b-0gabfwpbta] {
		flex: 1 1 100%;
		padding: 10px 12px;
		border-top: 1px solid rgba(39,35,92,0.08);
	}

	.ac-right[b-0gabfwpbta] {
		flex: 1 1 100%;
		border-left: none;
		border-top: 1px solid rgba(39,35,92,0.08);
		padding: 8px 14px;
		justify-content: flex-end;
	}

	.ac-badge[b-0gabfwpbta] {
		clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 50%, 100% 100%, 0 100%);
		width: 100%;
	}
}

@media (max-width: 600px) {
	.mw-sticky-header[b-0gabfwpbta] {
		flex-direction: column;
		align-items: stretch;
		padding: 8px 12px;
		gap: 8px;
	}

	.mw-header-spacer[b-0gabfwpbta] {
		display: none;
	}

	.mw-balance-chip[b-0gabfwpbta] {
		width: 100%;
	}

	.mw-balance-value[b-0gabfwpbta] {
		margin-left: auto;
	}

	.mw-toolbar[b-0gabfwpbta] {
		flex-wrap: nowrap;
		align-items: center;
		padding: 8px 12px;
		gap: 6px;
	}

	.mw-semantic-controls[b-0gabfwpbta] {
		flex-shrink: 0;
	}

	.mw-toolbar-actions[b-0gabfwpbta] {
		flex-shrink: 0;
	}

	.mw-calendar-backdrop[b-0gabfwpbta] {
		display: block;
		position: fixed;
		inset: 0;
		background: rgba(15,15,35,0.45);
		z-index: 1290;
	}

	.mw-calendar-popover[b-0gabfwpbta] {
		position: fixed;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: min(92vw, 340px);
		max-height: 80vh;
		overflow-y: auto;
		z-index: 1300;
	}

	.mw-tab-bar[b-0gabfwpbta] {
		padding: 0;
	}

	.mw-select-all-pin[b-0gabfwpbta] {
		padding: 10px 12px;
		border-bottom: 1px solid rgba(39,35,92,.08);
	}

	.mw-tabs-container[b-0gabfwpbta] {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
	}

	.mw-tab[b-0gabfwpbta] {
		width: 100%;
		justify-content: flex-start;
		border-bottom: 1px solid rgba(39,35,92,.08);
		border-left: 3px solid transparent;
	}

		.mw-tab.active[b-0gabfwpbta] {
			border-bottom: 1px solid rgba(39,35,92,.08);
			border-left-color: var(--primary);
			background: var(--color-background);
		}

	.mw-content[b-0gabfwpbta] {
		padding: 10px 8px;
	}

	.ac-details[b-0gabfwpbta] {
		gap: 4px 0;
	}

	.ac-cell[b-0gabfwpbta] {
		padding: 4px 8px;
	}

	.mw-fab-container[b-0gabfwpbta] {
		bottom: 16px;
		right: 16px;
	}
}

@media (max-width: 480px) {
	.ac-details[b-0gabfwpbta] {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.ac-divider[b-0gabfwpbta] {
		display: none;
	}

	.ac-cell-value.ac-truncate[b-0gabfwpbta],
	.ac-cell-value.ac-truncate-wide[b-0gabfwpbta] {
		min-width: calc(100vw - 80px);
		max-width: calc(100vw - 80px);
	}
}
