/* /Components/Certificates/CertificateStatusBadge.razor.rz.scp.css */
/* ── Certificate status card ─────────────────────────────────────────────── */
.cert-status-container[b-u1o2219kdb] {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 8px 8px;
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
}

.cert-status-card[b-u1o2219kdb] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px 16px;
    border-radius: 6px;
    background-color: #f9f9f9;
    border-left: 4px solid #ccc;
    cursor: default;
    transition: box-shadow 0.2s ease;
    width: 100%;
    box-sizing: border-box;
}

.cert-status-card:hover[b-u1o2219kdb] {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cert-icon-row[b-u1o2219kdb] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cert-title[b-u1o2219kdb] {
    font-size: 0.875rem;
    font-weight: 600;
    color: #37474F;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cert-days-row[b-u1o2219kdb] {
    display: flex;
    width: 100%;
}

.cert-days-badge[b-u1o2219kdb] {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
    letter-spacing: 0.02em;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

.cert-expiry-date[b-u1o2219kdb] {
    font-size: 0.80rem;
    color: #78909C;
}

/* Loading / error states */
.cert-loading[b-u1o2219kdb],
.cert-error[b-u1o2219kdb] {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    border-left-color: #90A4AE;
    width: 100%;
    box-sizing: border-box;
}

.cert-spinner[b-u1o2219kdb] {
    flex-shrink: 0;
}

.cert-label[b-u1o2219kdb] {
    font-size: 0.82rem;
    color: #546E7A;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-bedzen1w3u],
.components-reconnect-repeated-attempt-visible[b-bedzen1w3u],
.components-reconnect-failed-visible[b-bedzen1w3u],
.components-pause-visible[b-bedzen1w3u],
.components-resume-failed-visible[b-bedzen1w3u],
.components-rejoining-animation[b-bedzen1w3u] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-bedzen1w3u],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-bedzen1w3u],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-bedzen1w3u],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-bedzen1w3u],
#components-reconnect-modal.components-reconnect-retrying[b-bedzen1w3u],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-bedzen1w3u],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-bedzen1w3u],
#components-reconnect-modal.components-reconnect-failed[b-bedzen1w3u],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-bedzen1w3u] {
    display: block;
}


#components-reconnect-modal[b-bedzen1w3u] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-bedzen1w3u 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-bedzen1w3u 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-bedzen1w3u 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-bedzen1w3u]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-bedzen1w3u 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-bedzen1w3u {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-bedzen1w3u {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-bedzen1w3u {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-bedzen1w3u] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-bedzen1w3u] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-bedzen1w3u] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-bedzen1w3u] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-bedzen1w3u] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-bedzen1w3u] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-bedzen1w3u] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-bedzen1w3u 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-bedzen1w3u] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-bedzen1w3u {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Admin/CompanySelector.razor.rz.scp.css */
.company-table-container[b-7rueqc7o2a] {
    overflow-x: auto;
}

.company-table-container[b-7rueqc7o2a]  .mud-table-container {
    overflow-x: auto;
}

.company-table-container[b-7rueqc7o2a]  .mud-table-pagination {
    position: sticky !important;
    left: 0 !important;
    flex-wrap: wrap;
    overflow: hidden;
    max-width: 100%;
    justify-content: flex-end;
    gap: 4px;
    padding: 8px 4px;
}

.company-table-container[b-7rueqc7o2a]  .mud-table-pagination .mud-table-pagination-toolbar {
    flex-wrap: wrap;
    justify-content: flex-end;
    padding: 4px 8px;
    min-height: unset;
    width: 100%;
    overflow: hidden;
}

.company-table-container[b-7rueqc7o2a]  .mud-table-pagination .mud-table-pagination-actions {
    margin-left: 0;
}

.company-table-container[b-7rueqc7o2a]  .mud-table-pagination .mud-table-pagination-actions button {
    min-width: 32px;
    padding: 4px;
}
/* /Components/Pages/Auth/LandingPage.razor.rz.scp.css */
:root[b-ll6i55th7p] {
    --login-background: #ffffff;
    --login-title-color: #111827;
    --login-subtitle-color: #4b5563;
    --login-button-bg: #f97316;
    --login-button-hover-bg: #111827;
    --login-button-text: #ffffff;
    --login-button-focus-shadow: 0 0 0 2px #f97316, 0 0 0 4px rgba(249,115,22,.2);
    --marketing-gradient: linear-gradient(135deg,#fb923c 0%,#ea580c 100%);
    --mobile-marketing-gradient: linear-gradient(90deg,#fb923c 0%,#ea580c 100%);
    --background-shape-color: rgba(255,255,255,.1);
}

.Partner[b-ll6i55th7p] {
    display: flex;
    position: relative;
    gap: 15px;
    margin-top: 30%;
}

.pageContainer[b-ll6i55th7p] {
    width: 100%;
    min-height: 100vh;
    display: flex;
    background-color: white;
    flex-direction: row;
    z-index: 100;
    overflow: hidden;
    position: relative;
}

.loginDivContainer[b-ll6i55th7p] {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background-color: white;
    position: relative;
}

.logincontentContainer[b-ll6i55th7p] {
    width: 100%;
    margin-top: 25%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding: 2rem;
    background-color: white;
    position: relative;
}

.TopLogo[b-ll6i55th7p] {
    padding-left: 1%;
}

.logoContainer[b-ll6i55th7p] {
    display: flex;
    align-items: start;
    justify-content: start;
    margin-bottom: 2rem;
}

.logoTitle[b-ll6i55th7p] {
    font-weight: 600;
    align-items: center;
    display: flex;
    justify-content: center;
    text-align: center;
}

.loginTitle[b-ll6i55th7p] {
    font-weight: 700;
    color: #111827;
    text-align: center;
    font-size: 2.5rem;
    line-height: 1.2;
    margin: 0 0 1rem 0;
}

.loginSubtitle[b-ll6i55th7p] {
    color: #4b5563;
    text-align: center;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.4;
    margin: 0 0 1.5rem 0;
}

.loginButton[b-ll6i55th7p] {
    background: linear-gradient(135deg, #4CB749 0%, #BAD640 100%);
    color: white;
    font-weight: 600;
    padding: 12px 48px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

    .loginButton:hover[b-ll6i55th7p] {
        background-color: #111827;
        transform: scale(0.9);
    }

    .loginButton:focus[b-ll6i55th7p] {
        box-shadow: 0 0 0 2px #88400c, 0 0 0 4px rgba(249, 115, 22, 0.2);
    }

.marketingPanel[b-ll6i55th7p] {
    display: none;
    width: 50%;
    background: linear-gradient(135deg, #4CB749 0%, #BAD640 100%);
    align-items: center;
    justify-content: center;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.devices[b-ll6i55th7p] {
    position: relative;
    z-index: 20;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    overflow-y: none;
}

.screenContainerPhone[b-ll6i55th7p] {
    position: relative;
    z-index: 20;
    display: flex;
    justify-content: start;
    align-items: end;
    margin-top: 320px;
    margin-right: 400px;
    width: 50%;
    height: 50%;
    overflow-y: none;
}

.screenFramePhone[b-ll6i55th7p] {
    background: #1a1a1a;
    border-radius: 30px;
    padding: 15px;
    padding-top: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 15px 30px rgba(0, 0, 0, 0.3), inset 0 2px 4px rgba(255, 255, 255, 0.1);
    position: relative;
}

.screenImagePhone[b-ll6i55th7p] {
    width: 300px;
    height: auto;
    border-radius: 12px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.screenContainer[b-ll6i55th7p] {
    position: relative;
    z-index: 10;
    display: flex;
    padding-left: 5%;
    padding-top: 5%;
    justify-content: start;
    align-items: start;
    width: 50%;
    height: 50%;
    overflow-y: none;
}

.screenFrame[b-ll6i55th7p] {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 15px 30px rgba(0, 0, 0, 0.3), inset 0 2px 4px rgba(255, 255, 255, 0.1);
    position: relative;
}

.screenImage[b-ll6i55th7p] {
    width: 900px;
    height: auto;
    border-radius: 12px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.backgroundShapes[b-ll6i55th7p] {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.shape[b-ll6i55th7p] {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.1);
}

.shape1[b-ll6i55th7p] {
    top: 5rem;
    right: 5rem;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
}

.shape2[b-ll6i55th7p] {
    bottom: 8rem;
    left: 4rem;
    width: 6rem;
    height: 6rem;
    transform: rotate(45deg);
}

.shape3[b-ll6i55th7p] {
    top: 12%;
    left: 33%;
    width: 4rem;
    height: 4rem;
    transform: rotate(12deg);
}

.shape4[b-ll6i55th7p] {
    top: 80%;
    left: 33%;
    width: 4rem;
    height: 4rem;
    transform: rotate(12deg);
}

.shape5[b-ll6i55th7p] {
    top: 40%;
    left: 60%;
    width: 4rem;
    height: 4rem;
    transform: rotate(12deg);
}

.shape6[b-ll6i55th7p] {
    top: 6%;
    left: 3%;
    width: 4rem;
    height: 4rem;
    transform: rotate(12deg);
}

.mobileMarketing[b-ll6i55th7p] {
    display: block;
    background: linear-gradient(90deg,#fb923c 0%,#ea580c 100%);
    color: white;
    padding: 1rem;
    text-align: center;
    flex-shrink: 0;
}

    .mobileMarketing p[b-ll6i55th7p] {
        font-size: 0.875rem;
        font-weight: 500;
        margin: 0;
    }

@media (min-width: 1024px) {
    .pageContainer[b-ll6i55th7p] {
        flex-direction: row;
    }

    .loginDivContainer[b-ll6i55th7p] {
        width: 50%;
        padding: 4rem;
    }

    .marketingPanel[b-ll6i55th7p] {
        display: flex;
    }

    .screenContainer[b-ll6i55th7p] {
        display: flex;
    }

    .mobileMarketing[b-ll6i55th7p] {
        display: none;
    }

    .loginTitle[b-ll6i55th7p] {
        font-size: 3rem;
    }

    .loginSubtitle[b-ll6i55th7p] {
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .pageContainer[b-ll6i55th7p] {
        flex-direction: column;
    }

    .loginDivContainer[b-ll6i55th7p] {
        padding: 3rem 2rem;
        max-width: 500px;
        margin: 0 auto;
        flex: 1;
    }

    .loginTitle[b-ll6i55th7p] {
        font-size: 2.75rem;
    }

    .screenContainer[b-ll6i55th7p] {
        display: none;
    }

    .mobileMarketing[b-ll6i55th7p] {
        position: static;
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .pageContainer[b-ll6i55th7p] {
        flex-direction: column;
        min-height: 100vh;
    }

    .loginDivContainer[b-ll6i55th7p] {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 2rem 1rem;
    }

    .loginTitle[b-ll6i55th7p] {
        font-size: 2rem;
    }

    .loginSubtitle[b-ll6i55th7p] {
        font-size: 1.125rem;
    }

    .loginButton[b-ll6i55th7p] {
        width: 100%;
        max-width: 300px;
        padding: 14px 20px;
    }

        .loginButton:hover[b-ll6i55th7p] {
            padding: 14px 20px;
            transform: none;
            width: 100%;
        }

    .screenContainer[b-ll6i55th7p] {
        display: none;
    }

    .mobileMarketing[b-ll6i55th7p] {
        position: static;
        margin-top: auto;
    }
}
/* /Components/Shared/DashboardContent.razor.rz.scp.css */
/* /Components/Shared/DataTable.razor.rz.scp.css */
.datatable-wrapper[b-8nej61urmz] {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Scrollable table area only — pagination stays outside */
.datatable-scroll-container[b-8nej61urmz] {
    overflow-x: auto !important;
    overflow-y: visible !important;
}

/* Move scroll to MudBlazor's inner table container so pagination never scrolls */
.datatable-scroll-container[b-8nej61urmz]  .mud-table-container {
    overflow-x: auto !important;
    scrollbar-width: thin;
    scrollbar-color: #9e9e9e #e0e0e0;
}

.datatable-scroll-container[b-8nej61urmz]  .mud-table-container > table {
    min-width: max-content;
}

.datatable-scroll-container[b-8nej61urmz]  .mud-table-pagination {
    position: sticky !important;
    left: 0 !important;
    flex-wrap: wrap;
    overflow: hidden;
    max-width: 100%;
    justify-content: center;
    gap: 4px;
    padding: 8px 4px;
}

.datatable-scroll-container[b-8nej61urmz]  .mud-table-root {
    overflow: visible;
}

.datatable-scroll-container[b-8nej61urmz]  .mud-table-container::-webkit-scrollbar {
    height: 8px;
}

.datatable-scroll-container[b-8nej61urmz]  .mud-table-container::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 4px;
}

.datatable-scroll-container[b-8nej61urmz]  .mud-table-container::-webkit-scrollbar-thumb {
    background-color: #9e9e9e;
    border-radius: 4px;
}

/* Sticky actions column */
.datatable-sticky-col[b-8nej61urmz] {
    position: sticky;
    right: 0;
    z-index: 2;
    box-shadow: -3px 0 6px rgba(0, 0, 0, 0.12);
}

.datatable-sticky-header[b-8nej61urmz] {
    background: var(--mud-palette-table-striped) !important;
    z-index: 3;
}

.datatable-sticky-cell[b-8nej61urmz] {
    background: inherit;
}

/* Pagination bar — always full-width, never scrolls */
.datatable-pagination[b-8nej61urmz] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid var(--mud-palette-table-lines);
    border-top: none;
    background: var(--mud-palette-surface);
}

.datatable-pagination-left[b-8nej61urmz] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.datatable-pagination-right[b-8nej61urmz] {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Compact the page-size select so it doesn't grow */
.datatable-pagesize-select[b-8nej61urmz]  .mud-input-outlined {
    padding-top: 4px;
    padding-bottom: 4px;
}

/* Responsive pagination: shrink buttons and text on small screens */
@media (max-width: 600px) {
    .datatable-scroll-container[b-8nej61urmz]  .mud-table-pagination .mud-table-pagination-toolbar {
        flex-wrap: wrap;
        justify-content: center;
        padding: 4px;
        min-height: unset;
    }

    .datatable-scroll-container[b-8nej61urmz]  .mud-table-pagination .mud-table-pagination-actions {
        margin-left: 0;
    }
}
/* /Components/Shared/DownloadProgressPanel.razor.rz.scp.css */
.download-progress-panel[b-wx0icv6dl3] {
    position: fixed;
    bottom: 16px;
    right: 16px;
    width: 320px;
    z-index: 9999;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    background: white;
}

.download-progress-header[b-wx0icv6dl3] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background-color: #4CAF50;
}

.download-progress-body[b-wx0icv6dl3] {
    max-height: 300px;
    overflow-y: auto;
    padding: 8px 12px;
}

.download-progress-item[b-wx0icv6dl3] {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

    .download-progress-item:last-child[b-wx0icv6dl3] {
        border-bottom: none;
    }

.download-progress-fab[b-wx0icv6dl3] {
    position: fixed;
    bottom: 16px;
    right: 16px;
    z-index: 9999;
}
/* /Components/Shared/EcfBarChart.razor.rz.scp.css */
/* Oculta la leyenda nativa generada por MudBlazor Charts */
.ecf-bar-no-legend[b-fw9ui4olu3]  .mud-chart-legend {
    display: none;
}

/* Tarjeta de resumen "Total vendido" */
.ecf-bar-total-card[b-fw9ui4olu3] {
    border: 1px solid var(--sap-border-color);
    border-radius: 8px;
    padding: 16px 20px;
}

/* Ítem de leyenda */
.ecf-legend-item[b-fw9ui4olu3] {
    cursor: default;
    padding: 4px 8px;
    border-radius: 6px;
    transition: background-color 0.15s ease;
}

.ecf-legend-item--active[b-fw9ui4olu3] {
    background-color: var(--mud-palette-action-default-hover, rgba(0,0,0,0.06));
}

/* Punto de color de la leyenda */
.ecf-legend-dot[b-fw9ui4olu3] {
    display: inline-block;
    border-radius: 50%;
    flex-shrink: 0;
    transition: width 0.15s ease, height 0.15s ease;
}

/* ── Mobile-first ─────────────────────────────────────────────────────────── */

/* En móvil el eje Y de MudBlazor desborda hacia la izquierda;
   compensamos con padding para que quede dentro del card */
.ecf-bar-chart-col[b-fw9ui4olu3] {
    padding-left: 80px;
}

/* En móvil el panel derecho no necesita indentación lateral */
.ecf-bar-right-col[b-fw9ui4olu3] {
    padding-top: 16px;
}

/* ── Desktop (md ≥ 960px) ─────────────────────────────────────────────────── */
@media (min-width: 960px) {
    /* En desktop el espaciador md=1 absorbe el eje Y; quitamos el padding */
    .ecf-bar-chart-col[b-fw9ui4olu3] {
        padding-left: 0;
    }

    /* En desktop restauramos el sangrado original de la tarjeta */
    .ecf-bar-total-card[b-fw9ui4olu3] {
        margin-left: 0px;
        margin-bottom: 20px;
    }

    .ecf-bar-right-col[b-fw9ui4olu3] {
        padding-top: 0;
    }
}
/* /Components/Shared/EcfPieChart.razor.rz.scp.css */
/* Oculta la leyenda nativa generada por MudBlazor Charts */
.ecf-pie-no-legend[b-cwhg5ihzxe]  .mud-chart-legend {
    display: none;
}

/* Propiedades estáticas del punto de color de cada leyenda */
.ecf-legend-dot[b-cwhg5ihzxe] {
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    transition: width 0.15s ease, height 0.15s ease;
}

/* Separación entre el chart y la lista de leyendas */
.ecf-legend-column[b-cwhg5ihzxe] {
    padding-left: 30px;
}

.ecf-legend-item[b-cwhg5ihzxe] {
    padding: 4px 8px;
    border-radius: 6px;
    cursor: default;
    transition: background-color 0.15s ease;
}

.ecf-legend-item--active[b-cwhg5ihzxe] {
    background-color: var(--mud-palette-action-hover);
}
/* /Components/Shared/GenericBarChart.razor.rz.scp.css */
/* Oculta la leyenda nativa de MudBlazor Charts cuando se usa el panel lateral */
.generic-bar-no-legend[b-fvaypx5q5q]  .mud-chart-legend {
    display: none;
}

/* Tarjeta de resumen superior del panel derecho */
.generic-bar-total-card[b-fvaypx5q5q] {
    border: 1px solid var(--sap-border-color);
    border-radius: 8px;
    padding: 16px 20px;
}

/* Columna de leyenda vertical */
.generic-legend-column[b-fvaypx5q5q] {
    padding-top: 12px;
}

/* Ítem de leyenda */
.generic-legend-item[b-fvaypx5q5q] {
    cursor: default;
    padding: 4px 8px;
    border-radius: 6px;
    transition: background-color 0.15s ease;
}

.generic-legend-item--active[b-fvaypx5q5q] {
    background-color: var(--mud-palette-action-default-hover, rgba(0,0,0,0.06));
}

/* Punto de color de la leyenda */
.generic-legend-dot[b-fvaypx5q5q] {
    display: inline-block;
    border-radius: 50%;
    flex-shrink: 0;
    transition: width 0.15s ease, height 0.15s ease;
}

/* ── Mobile-first ─────────────────────────────────────────────────────────── */

.generic-bar-chart-col[b-fvaypx5q5q] {
    padding-left: 80px;
}

.generic-bar-right-col[b-fvaypx5q5q] {
    padding-top: 16px;
}

/* ── Desktop (md ≥ 960px) ─────────────────────────────────────────────────── */
@media (min-width: 960px) {
    .generic-bar-chart-col[b-fvaypx5q5q] {
        padding-left: 0;
    }

    .generic-bar-total-card[b-fvaypx5q5q] {
        margin-bottom: 20px;
    }

    .generic-bar-right-col[b-fvaypx5q5q] {
        padding-top: 0;
    }
}
