@import '_content/Blazor.Bootstrap/Blazor.Bootstrap.7t9tbfaemk.bundle.scp.css';

/* /Components/Components/Atom/AssistantIA/ChatAssistant.razor.rz.scp.css */
.chat-assistant-container[b-4poahc3mqe] {
    height: 100%;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    width: 100%;
    background-color: #f8f9fa;
}

.messages-container[b-4poahc3mqe] {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.message-wrapper[b-4poahc3mqe] {
    display: flex;
    margin-bottom: 24px;
    width: 100%;
    align-items: flex-start;
    /* Align icons to the bottom of the message group */
}

.user-message[b-4poahc3mqe] {
    justify-content: flex-end;
}

.assistant-message[b-4poahc3mqe] {
    justify-content: flex-start;
}

.message-content-wrapper[b-4poahc3mqe] {
    display: flex;
    flex-direction: column;
    max-width: 75%;
}

.user-message .message-content-wrapper[b-4poahc3mqe] {
    align-items: flex-end;
}

.assistant-message .message-content-wrapper[b-4poahc3mqe] {
    align-items: flex-start;
}

.message-bubble[b-4poahc3mqe] {
    padding: 16px 20px;
    border-radius: 12px;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    font-size: 15px;
    line-height: 1.5;
    color: #212529;
    position: relative;
    word-wrap: break-word;
    text-align: left;
}

.user-bubble[b-4poahc3mqe] {
    border-top-right-radius: 4px;
}

.assistant-bubble[b-4poahc3mqe] {
    border-top-left-radius: 4px;
}

/* Icons */
.message-icon[b-4poahc3mqe] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 4px;
    /* Align with bottom of bubble */
}

.user-icon[b-4poahc3mqe] {
    background-color: rgba(45, 52, 63, 1);
    /* Dark color */
    margin-right: 12px;
    margin-top: 23px;
}

.assistant-icon[b-4poahc3mqe] {
    background-color: rgba(255, 94, 44, 1);
    /* Orange color */
    margin-right: 12px;
    margin-top: 23px;
}

.message-icon img[b-4poahc3mqe] {
    width: 20px;
    height: 20px;
}

/* Typography */
.message-time-top[b-4poahc3mqe] {
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 4px;
    font-weight: 500;
}

.message-time-bottom[b-4poahc3mqe] {
    font-size: 14px;
    margin-top: 8px;
    display: block;
    color: #6c757d;
}

/* Typing Indicator */
.typing-indicator[b-4poahc3mqe] {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 0;
}

.typing-dot[b-4poahc3mqe] {
    width: 8px;
    height: 8px;
    background-color: #000000;
    border-radius: 50%;
    animation: typing-b-4poahc3mqe 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1)[b-4poahc3mqe] {
    animation-delay: -0.32s;
}

.typing-dot:nth-child(2)[b-4poahc3mqe] {
    animation-delay: -0.16s;
}

@keyframes typing-b-4poahc3mqe {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

.empty-chat[b-4poahc3mqe] {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
}

/* Message Footer */
.message-footer[b-4poahc3mqe] {
    padding-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-link-row[b-4poahc3mqe] {
    font-size: 13px;
    font-weight: 500;
}

.footer-link[b-4poahc3mqe] {
    color: #343a40;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.footer-link:hover[b-4poahc3mqe] {
    color: #252a2e;
    text-decoration: underline;
}

.footer-link svg[b-4poahc3mqe] {
    margin-top: -1px;
}

.footer-actions[b-4poahc3mqe] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.action-btn[b-4poahc3mqe] {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
    color: #adb5bd;
}

.action-btn:hover[b-4poahc3mqe] {
    background-color: #f1f3f5;
}

.action-btn img[b-4poahc3mqe] {
    width: 18px;
    height: 18px;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.action-btn:hover img[b-4poahc3mqe] {
    opacity: 0.8;
}

.action-btn:active img[b-4poahc3mqe] {
    opacity: 1;
}

.white-icon[b-4poahc3mqe] {
    filter: brightness(0) invert(1);
}

.action-btn-wrapper[b-4poahc3mqe] {
    position: relative;
    display: inline-block;
}

.action-btn-wrapper .tooltip-bottom[b-4poahc3mqe] {
    visibility: hidden;
    background-color: var(--bs-gray-700, #495057);
    color: #fff;
    text-align: center;
    border-radius: .25rem;
    padding: .25rem .5rem;
    position: absolute;
    z-index: 1080;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: .25rem;
    opacity: 0;
    transition: opacity .15s ease-in-out;
    font-size: 0.875em;
    white-space: nowrap;
}

.action-btn-wrapper:hover .tooltip-bottom[b-4poahc3mqe] {
    visibility: visible;
    opacity: 1;
}
/* /Components/Components/Atom/AssistantIA/ChatHistoryAssistant.razor.rz.scp.css */
/* Chat History Container with scroll */
.chat-history-container[b-36yyc5ylyx] {
    display: flex;
    flex-direction: column;
    width: 100%;
}


/* Chat Card Custom Styles that BS4 doesn't cover fully or we want specific */
.chat-card[b-36yyc5ylyx] {
    border-radius: 12px;
    /* Bootstrap default is usually less, forcing this for design */
    background-color: #F6F7FA;
    transition: all 0.2s ease;
    cursor: pointer;
    flex-shrink: 0; /* Prevent cards from shrinking */
    border: 2px solid transparent;
}

.chat-card:hover[b-36yyc5ylyx] {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
    /* Force override BS shadow-sm on hover if needed, or just let custom rule win */
    transform: translateY(-1px);
}

/* Selected Chat Card */
    .chat-card.selected[b-36yyc5ylyx] {
        border: 2px solid rgba(45, 52, 63, 1);
    }

.chat-card.selected:hover[b-36yyc5ylyx] {
    border-color: #0056b3;
    box-shadow: 0 6px 16px rgba(0, 123, 255, 0.2) !important;
}

/* Menu Overlay */
.menu-overlay[b-36yyc5ylyx] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 90;
    /* Below dropdown (1000) but above everything else */
    cursor: default;
    background: transparent;
}
/* /Components/Components/Atom/Cohort/CohortTable.razor.rz.scp.css */
.responsive-grid-container[b-l0tchvdeu0] {
    width: 100%;
    overflow-y: auto; 
    overflow-x: auto; 
    max-height: 370px;
}

.grid-header[b-l0tchvdeu0] {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    font-weight: bold;
    background-color: #fafafa;
    border-bottom: 1px solid #ccc;
    font-size: 11px;
    position: sticky; 
    top: 0; 
    z-index: 11; 
    width: 110%;
}
    .grid-header > div[b-l0tchvdeu0] {
        text-align: center;
        white-space: normal;
        overflow-wrap: break-word;
        line-height: 1.3;
        padding: 8px;
    }
      

.grid-body[b-l0tchvdeu0] {
    font-size: 12px;
    width: 100%;
}

    .grid-row[b-l0tchvdeu0] {
        display: grid;
        grid-template-columns: repeat(11, 1fr);
        grid-auto-flow: column;
        grid-auto-columns: 1fr;
        padding: 12px 0;
        border-bottom: 6px solid #eee;
        width: 110%;
    }

        .grid-row div[b-l0tchvdeu0] {
            text-align: center;
            padding: 0 5px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

.total-row[b-l0tchvdeu0] {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    font-weight: bold;
    background-color: #fafafa;
    border-top: 2px solid #ccc;
    font-size: 12px;
    position: sticky;
    bottom: 0;
    z-index: 10;
    width: 110%;
    padding: 12px 0;
    text-align: center;
}



    .clickable[b-l0tchvdeu0] {
        cursor: pointer;
        transition: all 0.2s ease-in-out;
    }

        .clickable:hover[b-l0tchvdeu0] {
            background-color: #F0F3F8;
        }
    /* Estilos para elementos seleccionados */
    .selected-cell[b-l0tchvdeu0] {
        background-color: #F0F3F8;
        border: 2px solid #2D343F !important;
        border-radius: 4px;
    }

    .selected-row[b-l0tchvdeu0] {
        position: relative;
    }

        .selected-row[b-l0tchvdeu0]::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border: 2px solid #2D343F;
            border-radius: 4px;
            pointer-events: none;
            z-index: 5;
        }

    .dynamic-height-container[b-l0tchvdeu0] {
        overflow-y: auto;
        padding: 0.5rem;
        border-radius: 0.375rem;
        background-color: #ffffff;
        box-shadow: 0 1px 3px rgba(0,0,0,0.12);
    }

    .details-grid-header[b-l0tchvdeu0] {
        display: grid;
        grid-template-columns: 2fr 2fr 2fr 2fr 2fr 2fr;
        background-color: #f8f8f8;
        font-size: 12px;
        top: 0;
        z-index: 10;
        border-bottom: 1px solid #ddd;
        width: 100%;
    }

        .details-grid-header div[b-l0tchvdeu0] {
            text-align: start;
            padding: 0 5px;
            align-items: center;
            display: flex;
            height: 100%;
        }

    .details-grid-body[b-l0tchvdeu0] {
        font-size: 12px;
        width: 100%;
    }

    .details-grid-row[b-l0tchvdeu0] {
        display: grid;
        grid-template-columns: 2fr 2fr 2fr 2fr 2fr 2fr;
        padding: 1px 0;
        border-bottom: 8px solid #eee;
        border-radius: 4px;
        width: 100%;
        align-items: center;
    }

        .details-grid-row div[b-l0tchvdeu0] {
            text-align: start;
            padding: 5px 5px;
            display: flex;
            align-items: center;
            height: 100%;
        }

        .details-grid-row .details-actions[b-l0tchvdeu0] {
            justify-content: flex-end;
            gap: 8px;
            display: flex;
            width: 100%;
        }

    .card-header[b-l0tchvdeu0] {
        background-color: #f8f8f8;
        padding: 8px 12px;
        font-weight: bold;
        margin-top: 0;
        margin-bottom: 0;
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
    }

    .details-container[b-l0tchvdeu0] {
        width: 100%;
        margin-top: 10px;
        margin-bottom: 70px;
        border-radius: 4px;
        overflow: hidden;
    }

    .disabled-cell[b-l0tchvdeu0] {
        cursor: wait !important;
        opacity: 0.7;
    }

        .disabled-cell:hover[b-l0tchvdeu0] {
            background-color: inherit !important;
        }
/* /Components/Components/Atom/Selects/DropdownPeriodos.razor.rz.scp.css */
.dropdown-periodos[b-033snt1wka] {
    position: relative;
    display: inline-block;
    font-family: inherit;
    width:180px;
}

.dropdown-arrow[b-033snt1wka] {
    margin-left: auto;
    font-size: 1.3rem;
    font-weight: bold;
}

.dropdown-menu-periodos[b-033snt1wka] {
    position: absolute;
    top: 110%;
    left: 0;
    z-index: 1000;
    min-width: 240px;
    background: #F7F8FA;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 18px 18px 18px 18px;
    margin-top: 8px;
    font-size: 1.08rem;
    color: #2D3236;
    font-family: inherit;
}

.dropdown-item[b-033snt1wka] {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    font-weight: bold;
}

    .dropdown-item input[type="checkbox"][b-033snt1wka] {
        accent-color: #616161;
        width: 15px;
        height: 15px;
    }

.dropdown-item-year[b-033snt1wka] {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
    font-size: 1.08rem;
}

    .dropdown-item-year input[type="checkbox"][b-033snt1wka] {
        accent-color: #616161;
        width: 15px;
        height: 15px;
    }

    .dropdown-item-year .expand-icon[b-033snt1wka] {
        margin-left: auto;
        cursor: pointer;
        font-size: 1.2rem;
        font-weight: bold;
    }

.dropdown-item-mes[b-033snt1wka] {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 28px;
    margin-bottom: 4px;
    font-weight: 400;
    font-size: 1.05rem;
}

    .dropdown-item-mes input[type="checkbox"][b-033snt1wka] {
        accent-color: #616161;
        width: 15px;
        height: 15px;
    }

.dropdown-menu-periodos[b-033snt1wka] {
    position: absolute;
    top: 110%;
    left: 0;
    right: auto;
    z-index: 9999;
}

    .dropdown-menu-periodos a[b-033snt1wka] {
        text-decoration: none;
    }
/* /Components/Components/Atom/StagesFilter/ReportsStagesFilter.razor.rz.scp.css */
.toggle-switch[b-z3vm9c3ilc] {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px;
}

.toggle-switch input[b-z3vm9c3ilc] {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-switch .popp[b-z3vm9c3ilc] {
    font-size: 14px;
    color: #333;
    font-family: Arial, sans-serif;
}

.toggle-switch span[b-z3vm9c3ilc] {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.toggle-switch span[b-z3vm9c3ilc]:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    border-radius: 50%;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
}

.toggle-switch input:checked + span[b-z3vm9c3ilc] {
    background-color: #2D343F;
}

.toggle-switch input:checked + span[b-z3vm9c3ilc]:before {
    transform: translateX(18px);
}
/* /Components/Components/Atom/Summary/OperationalDash/LeadtimeByStagesCads.razor.rz.scp.css */
.header-row[b-9y2xh3hvzf] {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    grid-column: 1 / -1;
    grid-row: 1;
    gap: 8px;
}

.info-row[b-9y2xh3hvzf] {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: 13px;
    color: #6b7280;
    padding-left: 15px;
}

.info-row strong[b-9y2xh3hvzf] {
    color: #111827;
    font-weight: 600;
}

.title[b-9y2xh3hvzf] {
    font-size: 14px;
    margin-left: 15px;
}

.header-icon[b-9y2xh3hvzf] {
    width: 35px;
    height: 35px;
    border: 1px solid #000;
    border-radius: 4px;
    filter: brightness(0) saturate(100%);
    cursor: pointer;
    display: inline-block;
}

    .header-icon:hover[b-9y2xh3hvzf] {
        box-shadow: 0 2px 5px rgba(17, 24, 39, 0.25);
    }

.cards[b-9y2xh3hvzf] {
    background: #fff;
    border: 1px solid var(--card-b);
    border-radius: 10px;
    padding: 16px 18px;
}

.resumen[b-9y2xh3hvzf] {
    display: grid;
    grid-template-columns: repeat(3,minmax(260px,1fr));
    background: #FFFFFF;
    grid-template-rows: auto 1fr;
    border-radius: 8px;
    padding: 20px;
    gap: 14px;
}

.status-card[b-9y2xh3hvzf] {
    display: grid;
    grid-template-columns: auto 12px 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 12px;
    padding: 2rem;
    background: #F6F7FA;
    grid-row: 3;
}

.status-badge[b-9y2xh3hvzf] {
    grid-column: 1;
    grid-row: 1;
    padding: 4px 10px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 12px;
}

.status-badge.red[b-9y2xh3hvzf] {
    background: #ffe7e2;
    border-color: #ffc0b2;
    color: #ff5e2c;
}

.status-badge.amber[b-9y2xh3hvzf] {
    background: #fff6da;
    border-color: #ffdfa0;
    color: #eab308;
}

.status-badge.green[b-9y2xh3hvzf] {
    background: #eafff6;
    border-color: #b8fbe1;
    color: #10b981;
}

.status-card .count[b-9y2xh3hvzf] {
    grid-column: 3;
    grid-row: 1;
    font-weight: 800;
    color: #111827;
}

.status-card .pct[b-9y2xh3hvzf] {
    grid-column: 1;
    grid-row: 2;
    font-weight: 700;
    color: #111827;
    padding: .2rem .5rem;
}

.status-card .sep[b-9y2xh3hvzf] {
    grid-column: 2;
    grid-row: 2;
    opacity: .5;
    text-align: center;
}

.status-card .detalle[b-9y2xh3hvzf] {
    grid-column: 3;
    grid-row: 2;
    color: #6b7280;
}

/* /Components/Components/Atom/Summary/OperationalDash/NumberComponentsByCurrentLocation.razor.rz.scp.css */
.title-card[b-q14y280m4q]{
    margin-left:35px;
    font-size:14px;
}

.stats-container[b-q14y280m4q] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0px;
    gap: 20px;
    background: #FFFFFF;
    border-radius: 12px;
    margin-bottom: 20px;
    margin-top: 15px
}

.stats-grid[b-q14y280m4q] {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    padding: 0 20px;
}

.stat-card[b-q14y280m4q] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px 0px;
    gap: 5px;
    flex: 1 1 200px;
    min-width: 200px;
    height: 140px;
    background: #F6F7FA;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color .15s ease, box-shadow .15s ease, transform .05s ease;
}

    .stat-card:hover[b-q14y280m4q] {
        background: #F6F7FA;
        box-shadow: 0px 4px 4px rgba(45, 52, 63, 0.25);
    }

.stat-header[b-q14y280m4q] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    padding: 0 20px;
    margin-bottom:15px
}

.stat-value[b-q14y280m4q] {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1;
}

.stat-icon[b-q14y280m4q] {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0%);
}

.stat-label[b-q14y280m4q] {
    font-size: 14px;
    color: #6b7280;
    text-align: center;
    font-weight: 400;
}
/* /Components/Components/Atom/Summary/StrategicDash/CardDeliveryFulfillment.razor.rz.scp.css */
.chart-container[b-5zxp1e2sny] {
    font-family: Poppins, 'Segoe UI', sans-serif;
    padding: 20px;
    background: #FFFFFF;
    border-radius: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.chart-header[b-5zxp1e2sny] {
    flex-shrink: 0;
    margin-bottom: 20px;
}

.chart-title[b-5zxp1e2sny] {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.chart-subtitle[b-5zxp1e2sny] {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

.chart-body[b-5zxp1e2sny] {
    display: flex;
    flex: 1;
    min-height: 350px;
    gap: 20px;
}

.vertical-bar[b-5zxp1e2sny] {
    display: flex;
    flex-direction: column;
    width: 40px;
    border-radius: 4px;
    overflow: hidden; /* Redondea las esquinas de los segmentos externos */
}

.segment[b-5zxp1e2sny] {
    width: 100%;
    transition: flex 0.5s ease-in-out;
}

/* Colores exactos */
.green[b-5zxp1e2sny] {
    background-color: #00B050;
}

.orange[b-5zxp1e2sny] {
    background-color: #FFB700;
}

.coral[b-5zxp1e2sny] {
    background-color: #FF6A3C;
}

.red[b-5zxp1e2sny] {
    background-color: #DE3148;
}

.labels-container[b-5zxp1e2sny] {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.label-item[b-5zxp1e2sny] {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: #444;
}

    .label-item strong[b-5zxp1e2sny] {
        margin-right: 8px;
        font-size: 1rem;
    }
/* /Components/Components/Atom/Summary/StrategicDash/CardRepairsDiscarded.razor.rz.scp.css */
.chart-container[b-e9m29kzeb2] {
    font-family: Poppins, 'Segoe UI', sans-serif;
    padding: 20px;
    background: #FFFFFF;
    border-radius: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.chart-header[b-e9m29kzeb2] {
    flex-shrink: 0;
}

.chart-body[b-e9m29kzeb2] {
    flex: 1;
    display: flex;
    flex-direction: column;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.nav-item[b-x9hrzip85e] {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

    .nav-item:first-of-type[b-x9hrzip85e] {
        padding-top: 1rem;

    }

    .nav-item:last-of-type[b-x9hrzip85e] {
        padding-bottom: 1rem;
    }

    .nav-item[b-x9hrzip85e]  .nav-link {
        padding: .5rem 1rem !important;
        color: #d7d7d7;
        background: none;
        border: none;
        height: 3.5rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 238px;
    }

    .nav-item[b-x9hrzip85e]  a.active {
        background-color: #FF5E2C;
        color: white;
    }

    .nav-item[b-x9hrzip85e]  .nav-link:hover {
        color: #FF997A;
    }

/* /Components/Pages/Account/Pages/BackgroundLogin.razor.rz.scp.css */
.texto[b-qzwf9g6hlj] {
    height: 65%;
    width: 70%;
    transform: translate(20%,30%);
    color: white;
}


.texto1[b-qzwf9g6hlj] {
    font-size: 30px;
    font-weight: bold;
}

.texto2[b-qzwf9g6hlj] {
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
    color: white;
}
/* /Components/Pages/Account/Pages/Login.razor.rz.scp.css */

.logo-sherpath[b-g1r5f303g7] {
    width: 250px
}
.card-information-email[b-g1r5f303g7]{
    max-width: 510px;
}

.card-title-email[b-g1r5f303g7]{
    color: rgba(0, 0, 0, 0.7);
    font-weight: bold;
    font-size: .88rem;
}

.transformed[b-g1r5f303g7] {
    transform: rotate(45deg);
}


.form-area[b-g1r5f303g7] {
    margin: auto;
    width: 400px;
    height: 500px;
    box-sizing: border-box;
    padding: 40px;
    border-radius: 30px;
    padding-top: 0px;
}


    .form-area p[b-g1r5f303g7] {
        margin: 0;
        padding: 0;
        font-weight: bold;
        color: #666;
    }

    .form-area .pTitulo[b-g1r5f303g7] {
        margin: 0;
        padding: 0;
        font-weight: bold;
        font-size: 24px;
        margin-bottom: 10px;
        color: #333;
    }

.logo-login[b-g1r5f303g7] {
    padding-top: 30px;
    padding-bottom: 30px;
}

    .logo-login img[b-g1r5f303g7] {
        display: block;
    }
/* /Components/Pages/Account/Pages/Management/UserAuth.razor.rz.scp.css */
.bg-header-user[b-0l61k611gd] {
        background-color: #FF5E2C !important;
    }
/* /Components/Pages/AssistantIA/AssistantPage.razor.rz.scp.css */
.assistant-page-container[b-ayxxwt2t0j] {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 80px);
    /* Adjust based on your header height */
    overflow: hidden;
}

.welcome-header[b-ayxxwt2t0j] {
    background-color: white;
    padding: 1rem 1rem 0rem 1rem;
    border-radius: 12px;
    margin-top: 1rem;
    margin-left: 1rem;
    margin-right: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.welcome-title[b-ayxxwt2t0j] {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.welcome-subtitle[b-ayxxwt2t0j] {
    color: #6c757d;
    font-size: 0.95rem;
}


/* Main Container */
.assistant-container[b-ayxxwt2t0j] {
    display: flex;
    flex-grow: 1;
    overflow: hidden;
    gap: 1rem;
    padding: 1rem;
    font-family: 'Poppins', sans-serif;
    max-height: calc(100vh - 200px);
}

/* Sidebar */
.sidebar[b-ayxxwt2t0j] {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: 1rem;
    overflow: hidden;
}

.sidebar.collapsed[b-ayxxwt2t0j] {
    align-items: center;
    width: 60px;
    min-width: 60px;
    max-width: 60px;
    flex-shrink: 0;
}

.sidebar.expanded[b-ayxxwt2t0j] {
    width: 30%;
    min-width: 280px;
    max-width: 350px;
    flex-shrink: 0;
}

/* Sidebar Toggle & Header */
.sidebar-header[b-ayxxwt2t0j] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.collapsed .sidebar-header[b-ayxxwt2t0j] {
    justify-content: center;
    width: 100%;
    gap: 0;
}

.menu-btn[b-ayxxwt2t0j] {
    cursor: pointer;
    font-size: 1.2rem;
    color: #333;
    min-width: 24px;
    display: flex;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
    padding: 0.25rem;
    border-radius: 4px;
}

.menu-btn:hover[b-ayxxwt2t0j] {
    color: #2c3e50;
    background-color: #f8f9fa;
    transform: scale(1.1);
}

.sidebar-title[b-ayxxwt2t0j] {
    font-weight: 600;
    font-size: 1rem;
    opacity: 1;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #2c3e50;
    white-space: nowrap;
}

.collapsed .sidebar-title[b-ayxxwt2t0j] {
    opacity: 0;
    width: 0;
    overflow: hidden;
}

/* New Chat Button */
.new-chat-btn[b-ayxxwt2t0j] {
    background-color: #2c3e50;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    cursor: pointer;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    width: 100%;
    min-height: 40px;
    overflow: hidden;
}

.new-chat-btn:hover[b-ayxxwt2t0j] {
    background-color: #34495e;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.collapsed .new-chat-btn[b-ayxxwt2t0j] {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 8px;
    gap: 0;
}

.collapsed .new-chat-btn span[b-ayxxwt2t0j] {
    opacity: 0;
    width: 0;
    transition: opacity 0.2s ease-out, width 0.2s ease-out;
}

.expanded .new-chat-btn span[b-ayxxwt2t0j] {
    opacity: 1;
    width: auto;
    transition: opacity 0.3s ease-in 0.1s, width 0.3s ease-in 0.1s;
}

/* Main Content Area */
.main-content[b-ayxxwt2t0j] {
    flex: 1;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    min-width: 0; /* Importante para flex shrinking */
}


/* Chat Area */
.chat-area[b-ayxxwt2t0j] {
    background-color: white;
    border-radius: 12px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    position: relative;
    text-align: center;
    height: 100%;
}

/* Contenido del chat (messages/suggestions) */
.chat-content[b-ayxxwt2t0j] {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 0;
}

/* Secci�n de input fija */
.chat-input-section[b-ayxxwt2t0j] {
    flex-shrink: 0;
}

.chat-prompt[b-ayxxwt2t0j] {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 2rem;
}

/* Suggestions Layout */
.suggestions-container[b-ayxxwt2t0j] {
    background-color: #F6F7FA;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: 100%;
    flex: 1;
    border-radius: 8px;
    padding: 1rem 0;
    overflow-y: auto;
    max-height: 100%;
    margin-bottom: 1rem;
}

.suggestion-row[b-ayxxwt2t0j] {
    display: flex;
    justify-content: center;
    gap: 1rem;
    width: 100%;
}

.suggestion-chip[b-ayxxwt2t0j] {
    background-color: white;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    padding: 0.25rem 1rem;
    color: #6c757d;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
    margin-left: 1rem;
    margin-right: 1rem;
}

.suggestion-chip:hover[b-ayxxwt2t0j] {
    background-color: #f8f9fa;
    border-color: #dfe2e6;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Chat Input */
.chat-input-container[b-ayxxwt2t0j] {
    position: relative;
    background-color: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.02);
    flex-grow: 1;
}

.chat-button-container[b-ayxxwt2t0j] {
    margin-left: 1rem;
}

.chat-input[b-ayxxwt2t0j] {
    flex-grow: 1;
    border: none;
    outline: none;
    padding: 0.75rem;
    font-size: 0.95rem;
    color: #2c3e50;
}



/* Chat Info Container */
.chat-info-container[b-ayxxwt2t0j] {
    position: absolute;
    bottom: -1.5rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Processing Message */
.processing-message[b-ayxxwt2t0j] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.spinning-icon[b-ayxxwt2t0j] {
    animation: spin-b-ayxxwt2t0j 1s linear infinite;
}

@keyframes spin-b-ayxxwt2t0j {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Character Counter */
.char-counter[b-ayxxwt2t0j] {
    font-size: 0.75rem;
    color: #adb5bd;
}

/* History Placeholder */
.history-placeholder[b-ayxxwt2t0j] {
    margin-top: 2rem;
    text-align: center;
    color: #adb5bd;
    font-size: 0.85rem;
    padding: 0 1rem;
    opacity: 1;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-grow: 1;
    overflow-y: auto;
    max-height: calc(100vh - 350px);
    transform: translateX(0);
}

.collapsed .history-placeholder[b-ayxxwt2t0j] {
    opacity: 0;
    transform: translateX(-20px);
    pointer-events: none;
}

/* Scroll personalizado para suggestions-container */
.suggestions-container[b-ayxxwt2t0j]::-webkit-scrollbar {
    width: 6px;
}

.suggestions-container[b-ayxxwt2t0j]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.suggestions-container[b-ayxxwt2t0j]::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.suggestions-container[b-ayxxwt2t0j]::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}

/* Scroll personalizado para history-placeholder */
.history-placeholder[b-ayxxwt2t0j]::-webkit-scrollbar {
    width: 4px;
}

.history-placeholder[b-ayxxwt2t0j]::-webkit-scrollbar-track {
    background: transparent;
}

.history-placeholder[b-ayxxwt2t0j]::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 2px;
}

.history-placeholder[b-ayxxwt2t0j]::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

/* Responsive main content based on sidebar state */
.sidebar.expanded ~ .main-content[b-ayxxwt2t0j] {
    /* Flexbox se encargar� autom�ticamente del espacio restante despu�s del 30% del sidebar */
}

.sidebar.collapsed ~ .main-content[b-ayxxwt2t0j] {
    /* Flexbox se encargar� autom�ticamente del espacio restante despu�s del 60px del sidebar */
}
/* /Components/Pages/GestionPages/OrdenesPages/OrdenDetails/SintesisTrazabilidad/TrazabilidadOrden/TrazabilidadOrden.razor.rz.scp.css */
ul.progress-steps[b-mhmpo5j0dt],
ul.progress-steps-many[b-mhmpo5j0dt] {
    position: relative;
    display: flex; 
    justify-content: space-between;
    list-style: none; 
    padding: 0;
}

    ul.progress-steps[b-mhmpo5j0dt]::before,
    ul.progress-steps-many[b-mhmpo5j0dt]::before {
        content: "";
        position: absolute;
        top: 49%;
        height: 2px;
        background: #ccc;
    }

    ul.progress-steps[b-mhmpo5j0dt]::before {
        left: 11.1%;
        right: 7.4%;
    }

    ul.progress-steps-many[b-mhmpo5j0dt]::before {
        left: 8%;
        right: 5.4%;
    }

.step[b-mhmpo5j0dt] {
    margin-top: -5px !important;
}

.trazabilidad-text[b-mhmpo5j0dt] {
    max-width: 120px;
    max-height: 45px;
}

.step-label-active[b-mhmpo5j0dt] {
    font-size: 16px !important;
}

.step-marker-disabled[b-mhmpo5j0dt] {
    background-color: #8C9199;
    border: 2px solid #8C9199;
}

.step-text-disabled[b-mhmpo5j0dt] {
    color: #d3d3d3;
}

.btn-marker[disabled][b-mhmpo5j0dt] {
    pointer-events: none;
    opacity: 0.6;
}

.pointer-click[b-mhmpo5j0dt] {
    cursor: pointer;
}

.trazabilidad-text[b-mhmpo5j0dt] {
    max-width: 120px;
    max-height: 45px;
    text-align: center;
    font-size: 14px;
}

.step-label-active[b-mhmpo5j0dt] {
    font-size: 15px !important;
}

ul.progress-steps-many .trazabilidad-text[b-mhmpo5j0dt] {
    font-size: 14px; 
    max-width: 90px; 
}

.trazabilidad-text.pointer-click[b-mhmpo5j0dt] {
    display: inline-block;
    cursor: pointer;
}
/* /Components/Pages/GestionPages/OrdenesPages/OrdenDetails/SintesisTrazabilidad/TrazabilidadOrden/TrazabilidadTabs/SubTabsTareasReparacion/PiecesView.razor.rz.scp.css */
body .table-main-container[b-edbkrvrkm1] {
    margin: 0 auto;
    padding: 0 15px;
    font-size: 17px;
}

.scrollable-content[b-edbkrvrkm1] {
    margin-top: -1px;
}


.btn-suggested-activity[b-edbkrvrkm1] {
    border: none;
    color: #495057;
    background-color: #f0f2f5;
    font-size: 15px;
    border-radius: 25rem;
    text-align: center;
    cursor: none;
    white-space: nowrap;
}

.activity-column[b-edbkrvrkm1] {
    gap: 0.75rem;
}

.info-icon[b-edbkrvrkm1] {
    margin-left: 0.5rem;
    flex-shrink: 0;
}

.work-dropdown[b-edbkrvrkm1] {
    min-width: 140px;
    background-color: white;
    margin-right: 20px;
    font-size: 15px;
    padding: 0.5rem 0.5rem;
    border-radius: 0.25rem;
}


/* Layout con divs */
.header-row[b-edbkrvrkm1] {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 10px;
}

.data-row[b-edbkrvrkm1] {
    display: flex;
    align-items: center;
    min-height: 70px;
}


/* col header  */
.col-piece-group[b-edbkrvrkm1] {
    flex: 0 0 25%;
    min-width: 180px;
}

.col-ciclo-actual[b-edbkrvrkm1] {
    flex: 0 0 12%;
    min-width: 70px;
    text-align: right;
}

.col-ciclo-max[b-edbkrvrkm1] {
    flex: 0 0 12%;
    min-width: 70px;
    text-align: right;
}

.col-actividad[b-edbkrvrkm1] {
    flex: 0 0 21%;
    min-width: 70px;
    text-align: center;
}

.col-trabajo[b-edbkrvrkm1] {
    flex: 0 0 15%;
    min-width: 70px;
}

.col-documento[b-edbkrvrkm1] {
    flex: 0 0 15%;
    min-width: 70px;
    text-align: right;
}

.col-documentName[b-edbkrvrkm1] {
    flex: 0 0 39%;
    min-width: 240px;
}

.col-file[b-edbkrvrkm1] {
    flex: 0 0 33%;
    min-width: 200px;
}

.pieza-nombre[b-edbkrvrkm1] {
    font-weight: normal;
    font-size: 15px;
    margin-bottom: 0.25rem;
}

.pieza-id[b-edbkrvrkm1] {
    color: #6c757d;
    font-size: 14px;
}

.ciclo-text[b-edbkrvrkm1] {
    color: #6c757d;
    font-size: 16px;
}

.btn-documento[b-edbkrvrkm1] {
    color: black;
    text-decoration: none;
    font-weight: normal;
    background: none;
    border: none;
    padding: 0;
    font-size: 15px;
    white-space: nowrap;
    cursor: pointer;
}
/* /Components/Pages/GestionPages/OrdenesPages/Ordenes.razor.rz.scp.css */
.tab-btn[b-zm5zui7eyo] {
    background-color: white;
    border: 2px solid #dee2e6;
    padding: 10px;
    border-radius: 4px 0 0 4px;
    transition: background-color 0.2s, box-shadow 0.2s;
}

    .tab-btn + .tab-btn[b-zm5zui7eyo] {
        border-left: none;
        border-radius: 0 4px 4px 0;
    }

    .tab-btn.active[b-zm5zui7eyo] {
        background-color: #eef0f4;
        border: 2px solid #2c2c2c;
    }

    .tab-btn:hover[b-zm5zui7eyo] {
        background-color: #f5f7fa;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    }
/* /Components/Pages/GestionPages/SolicitudesPages/Solicitudes.razor.rz.scp.css */
.tab-btn[b-gq0168rzoh] {
    background-color: white;
    border: 2px solid #dee2e6;
    padding: 10px;
    border-radius: 4px 0 0 4px;
    transition: background-color 0.2s, box-shadow 0.2s;
}

    .tab-btn + .tab-btn[b-gq0168rzoh] {
        border-left: none;
        border-radius: 0 4px 4px 0;
    }

    .tab-btn.active[b-gq0168rzoh] {
        background-color: #eef0f4;
        border: 2px solid #2c2c2c;
    }

    .tab-btn:hover[b-gq0168rzoh] {
        background-color: #f5f7fa;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    }
/* /Components/Pages/PendientesPages/Pendientes.razor.rz.scp.css */
:root[b-yh0m4hpkol] {
    --card-b: #e5e7eb;
    --txt-1: #374151; 
}

/* Base */
.page[b-yh0m4hpkol] {
    padding: 24px;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.card[b-yh0m4hpkol] {
    background: #fff;
    border: 1px solid var(--card-b);
    border-radius: 10px;
    padding: 16px 18px;
}

/* Header */
.header-card[b-yh0m4hpkol] {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    column-gap: 16px;
    row-gap: 12px;
    align-items: center;
    text-align: initial;
}

.hero[b-yh0m4hpkol] {
    display: contents;
}

    .hero h5[b-yh0m4hpkol] {
        grid-column: 1;
        grid-row: 1;
        margin: 0;
        font-weight: 800;
    }

    .hero p[b-yh0m4hpkol] {
        grid-column: 1;
        grid-row: 2;
        margin: 0;
    }

.areas[b-yh0m4hpkol] {
    grid-column: 2;
    grid-row: 2;
}

.hero-action-selected h5[b-yh0m4hpkol] {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
}

.areas-action-selected[b-yh0m4hpkol] {
    grid-column: 2;
    grid-row: 1;
}

/* Resumen */
.resumen[b-yh0m4hpkol] {
    display: grid;
    grid-template-columns: repeat(3,minmax(260px,1fr));
    gap: 14px;
}

.status-card[b-yh0m4hpkol] {
    display: grid;
    grid-template-columns: auto 12px 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 12px;
    padding: 2rem;
}

.status-badge[b-yh0m4hpkol] {
    grid-column: 1;
    grid-row: 1;
    padding: 4px 10px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 12px;
}

    .status-badge.red[b-yh0m4hpkol] {
        background: #ffe7e2;
        border-color: #ffc0b2;
        color: #ff5e2c;
    }

    .status-badge.amber[b-yh0m4hpkol] {
        background: #fff6da;
        border-color: #ffdfa0;
        color: #eab308;
    }

    .status-badge.green[b-yh0m4hpkol] {
        background: #eafff6;
        border-color: #b8fbe1;
        color: #10b981;
    }

.status-card .count[b-yh0m4hpkol] {
    grid-column: 3;
    grid-row: 1;
    font-weight: 800;
    color: #111827;
}

.status-card .pct[b-yh0m4hpkol] {
    grid-column: 1;
    grid-row: 2;
    font-weight: 700;
    color: #111827;
    padding: .2rem .5rem;
}

.status-card .sep[b-yh0m4hpkol] {
    grid-column: 2;
    grid-row: 2;
    opacity: .5;
    text-align: center;
}

.status-card .detalle[b-yh0m4hpkol] {
    grid-column: 3;
    grid-row: 2;
    color: #6b7280;
}

.resumen.muted .status-card.card[b-yh0m4hpkol] {
    background: #f6f7fb !important;
    border-color: #e6ebf2 !important;
}

/* Acciones */
.cta[b-yh0m4hpkol] {
    text-align: center;
    margin-bottom: 8px;
}

    .cta h4[b-yh0m4hpkol] {
        margin: 0 0 4px;
        font-weight: 800;
    }

.acciones[b-yh0m4hpkol] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.acciones-top[b-yh0m4hpkol] {
    justify-content: flex-start;
}

.acciones-cloud[b-yh0m4hpkol] {
    background: #f6f7fb;
    border: 1px solid #e6ebf2;
    border-radius: 12px;
    padding: 2rem 4rem;
    gap: 14px 18px;
}

    .acciones-cloud .chip[b-yh0m4hpkol],
    .acciones-cloud--tight .chip[b-yh0m4hpkol] {
        background: #fff;
        border-color: #e6ebf2;
        font-weight: 600;
        padding: 6px 12px;
    }

.acciones-cloud--tight[b-yh0m4hpkol] {
    padding: 12px 14px;
    margin-bottom: 10px;
}

.chip[b-yh0m4hpkol] {
    background: #f3f4f6;
    border: 1px solid var(--card-b);
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
}

    .chip.active[b-yh0m4hpkol] {
        background: #0f172a;
        color: #fff;
        border-color: #0f172a;
    }

.acciones .count[b-yh0m4hpkol] {
    opacity: .75;
    margin-left: 4px;
}

.status-card .count[b-yh0m4hpkol] {
    opacity: 1;
    margin-left: 0;
}

/* Listado */
.listado[b-yh0m4hpkol] {
    margin-top: 8px;
    border: 1px solid var(--card-b);
    border-radius: 14px;
    overflow: hidden;
}

    .listado .row[b-yh0m4hpkol] {
        display: grid;
        grid-template-columns: 1.6fr 1.1fr 1.0fr 1.8fr 60px;
        gap: 12px;
        align-items: start;
        padding: 12px 16px;
        background: #fff;
        border-bottom: 1px solid #f1f5f9;
    }

        .listado .row:last-child[b-yh0m4hpkol] {
            border-bottom: none;
        }

    .listado .actions[b-yh0m4hpkol] {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 6px;
    }

.topline[b-yh0m4hpkol] {
    display: flex;
    gap: 12px;
    align-items: center;
}

.meta[b-yh0m4hpkol] {
    font-size: 12.5px;
    margin-top: 2px;
}

.icon-btn[b-yh0m4hpkol] {
    width: 32px;
    height: 32px;
    border: 1px solid var(--card-b);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
}

    .icon-btn:hover[b-yh0m4hpkol] {
        background: #f3f4f6;
    }

/* Col 1: título y componente */
.c-left .topline[b-yh0m4hpkol] {
    display: flex;
    gap: 10px;
    align-items: center;
}

.c-left .sol[b-yh0m4hpkol] {
    font-weight: 500;
    color: var(--txt-3, #6f7072) !important;
}

.c-left .componente-name[b-yh0m4hpkol] {
    font-weight: 500;
}

/* Col 2: leadtime + id único */
.c-meta[b-yh0m4hpkol] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
}

.btn-sm.lead[b-yh0m4hpkol] {
    all: unset;
}

.leadtime[b-yh0m4hpkol] {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

    .leadtime.is-empty[b-yh0m4hpkol] {
        background: transparent;
        border: none;
        padding: 0;
    }

        .leadtime.is-empty[b-yh0m4hpkol]::before {
            content: "\00a0";
            display: inline-block;
            min-width: 84px;
            height: 22px;
        }

.c-meta .uid[b-yh0m4hpkol] {
    font-size: 12.5px;
}

    .c-meta .uid:empty[b-yh0m4hpkol]::before {
        content: "\00a0";
        display: inline-block;
        min-width: 160px;
        height: 18px;
    }

/* Col 3: WR / WO */
.c-ww[b-yh0m4hpkol] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    white-space: nowrap;
    min-width: 160px;
}

    .c-ww .wr[b-yh0m4hpkol],
    .c-ww .wo[b-yh0m4hpkol] {
        font-weight: 500;
        color: var(--txt-3, #6f7072) !important;
    }

        .c-ww .wr:empty[b-yh0m4hpkol]::before,
        .c-ww .wo:empty[b-yh0m4hpkol]::before {
            content: "\00a0";
            display: inline-block;
            min-width: 160px;
            height: 18px;
        }

/* Col 4: descripción + fecha (gris medio) */
.c-desc .desc[b-yh0m4hpkol] {
    font-weight: 500;
}

.c-desc .meta[b-yh0m4hpkol] {
    font-size: 12.5px;
    margin-top: 2px;
}

    .c-desc .desc:empty[b-yh0m4hpkol]::before,
    .c-desc .meta:empty[b-yh0m4hpkol]::before {
        content: "\00a0";
        display: inline-block;
    }

/* Card con lista scrollable */
.card--with-list[b-yh0m4hpkol] {
    display: flex;
    flex-direction: column;
    min-height: 0;
}

    .card--with-list .acciones[b-yh0m4hpkol] {
        flex: 0 0 auto;
    }

    .card--with-list .listado[b-yh0m4hpkol] {
        flex: 1 1 auto;
        min-height: 0;
        overflow-y: auto;
        overflow-x: hidden;
        overscroll-behavior: contain;
    }

@supports (height:1dvh) {
    .card--with-list .listado[b-yh0m4hpkol] {
        max-height: calc(100dvh - 32rem);
    }
}

/* Responsive */
@media (max-width:880px) {
    .header-card[b-yh0m4hpkol] {
        grid-template-columns: 1fr;
    }

    .areas[b-yh0m4hpkol] {
        justify-self: end;
    }
}

@media (max-width:980px) {
    .resumen[b-yh0m4hpkol] {
        grid-template-columns: 1fr;
    }

    .listado .row[b-yh0m4hpkol] {
        grid-template-columns: 1fr;
    }

    .acciones[b-yh0m4hpkol] {
        justify-content: flex-start;
    }
}

/* Mensaje de tarjeta en cero */
.status-card.zero[b-yh0m4hpkol] {
    grid-template-columns: auto 12px 1fr; /* conservamos la grilla */
    grid-template-rows: auto auto;
}

    .status-card.zero .zero-copy[b-yh0m4hpkol] {
        grid-column: 3; /* texto en la tercera columna (lado derecho) */
        grid-row: 1 / span 2;
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .status-card.zero .zero-head[b-yh0m4hpkol] {
        font-weight: 800;
        color: #111827;
    }

    .status-card.zero .zero-sub[b-yh0m4hpkol] {
        color: var(--txt-2);
    }

/* Empty state del listado */
.empty-list[b-yh0m4hpkol] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: 48px 8px;
    color: var(--txt-2);
    text-align: center;
}

    .empty-list .emoji[b-yh0m4hpkol] {
        font-size: 20px;
    }

.zero-head[b-yh0m4hpkol] {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.zero-ico[b-yh0m4hpkol] {
    font-size: 18px;
    line-height: 1;
}


/* Ellipsis de una sola línea (genérico) */
.ellipsis-1[b-yh0m4hpkol] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Límites por cantidad de caracteres (ch = ancho de “0”) */
.trunc-32ch[b-yh0m4hpkol] {
    max-width: 32ch;
}

.trunc-28ch[b-yh0m4hpkol] {
    max-width: 28ch;
}

.trunc-22ch[b-yh0m4hpkol] {
    max-width: 22ch;
}


.c-left .componente-name[b-yh0m4hpkol] {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.c-meta .uid[b-yh0m4hpkol] {

}

    .c-meta .uid.ellipsis-1[b-yh0m4hpkol] {
    }

.c-ww .wr[b-yh0m4hpkol],
.c-ww .wo[b-yh0m4hpkol] {
}

    .c-meta .uid:empty[b-yh0m4hpkol]::before,
    .c-ww .wr:empty[b-yh0m4hpkol]::before,
    .c-ww .wo:empty[b-yh0m4hpkol]::before {
        content: "\00a0";
        display: inline-block;
        height: 18px;
    }

/* /Components/Pages/ProveedorPages/AccionesPendientes/PendientesProveedor.razor.rz.scp.css */
:root[b-mwgmtaftnb] {
    --card-b: #e5e7eb;
    --txt-1: #374151;
}

/* Base */
.page[b-mwgmtaftnb] {
    padding: 24px;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.card[b-mwgmtaftnb] {
    background: #fff;
    border: 1px solid var(--card-b);
    border-radius: 10px;
    padding: 16px 18px;
}

/* Header */
.header-card[b-mwgmtaftnb] {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    column-gap: 16px;
    row-gap: 12px;
    align-items: center;
    text-align: initial;
}

.hero[b-mwgmtaftnb] {
    display: contents;
}

    .hero h5[b-mwgmtaftnb] {
        grid-column: 1;
        grid-row: 1;
        margin: 0;
        font-weight: 800;
    }

    .hero p[b-mwgmtaftnb] {
        grid-column: 1;
        grid-row: 2;
        margin: 0;
    }

.areas[b-mwgmtaftnb] {
    grid-column: 2;
    grid-row: 2;
}

.hero-action-selected h5[b-mwgmtaftnb] {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
}

.areas-action-selected[b-mwgmtaftnb] {
    grid-column: 2;
    grid-row: 1;
}

/* Resumen */
.resumen[b-mwgmtaftnb] {
    display: grid;
    grid-template-columns: repeat(3,minmax(260px,1fr));
    gap: 14px;
}

.status-card[b-mwgmtaftnb] {
    display: grid;
    grid-template-columns: auto 12px 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 12px;
    padding: 2rem;
}

.status-badge[b-mwgmtaftnb] {
    grid-column: 1;
    grid-row: 1;
    padding: 4px 10px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 12px;
}

    .status-badge.red[b-mwgmtaftnb] {
        background: #ffe7e2;
        border-color: #ffc0b2;
        color: #ff5e2c;
    }

    .status-badge.amber[b-mwgmtaftnb] {
        background: #fff6da;
        border-color: #ffdfa0;
        color: #eab308;
    }

    .status-badge.green[b-mwgmtaftnb] {
        background: #eafff6;
        border-color: #b8fbe1;
        color: #10b981;
    }

.status-card .count[b-mwgmtaftnb] {
    grid-column: 3;
    grid-row: 1;
    font-weight: 800;
    color: #111827;
}

.status-card .pct[b-mwgmtaftnb] {
    grid-column: 1;
    grid-row: 2;
    font-weight: 700;
    color: #111827;
    padding: .2rem .5rem;
}

.status-card .sep[b-mwgmtaftnb] {
    grid-column: 2;
    grid-row: 2;
    opacity: .5;
    text-align: center;
}

.status-card .detalle[b-mwgmtaftnb] {
    grid-column: 3;
    grid-row: 2;
    color: #6b7280;
}

.resumen.muted .status-card.card[b-mwgmtaftnb] {
    background: #f6f7fb !important;
    border-color: #e6ebf2 !important;
}

/* Acciones */
.cta[b-mwgmtaftnb] {
    text-align: center;
    margin-bottom: 8px;
}

    .cta h4[b-mwgmtaftnb] {
        margin: 0 0 4px;
        font-weight: 800;
    }

.acciones[b-mwgmtaftnb] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.acciones-top[b-mwgmtaftnb] {
    justify-content: flex-start;
}

.acciones-cloud[b-mwgmtaftnb] {
    background: #f6f7fb;
    border: 1px solid #e6ebf2;
    border-radius: 12px;
    padding: 2rem 4rem;
    gap: 14px 18px;
}

    .acciones-cloud .chip[b-mwgmtaftnb],
    .acciones-cloud--tight .chip[b-mwgmtaftnb] {
        background: #fff;
        border-color: #e6ebf2;
        font-weight: 600;
        padding: 6px 12px;
    }

.acciones-cloud--tight[b-mwgmtaftnb] {
    padding: 12px 14px;
    margin-bottom: 10px;
}

.chip[b-mwgmtaftnb] {
    background: #f3f4f6;
    border: 1px solid var(--card-b);
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
}

    .chip.active[b-mwgmtaftnb] {
        background: #0f172a;
        color: #fff;
        border-color: #0f172a;
    }

.acciones .count[b-mwgmtaftnb] {
    opacity: .75;
    margin-left: 4px;
}

.status-card .count[b-mwgmtaftnb] {
    opacity: 1;
    margin-left: 0;
}

/* Listado */
.listado[b-mwgmtaftnb] {
    margin-top: 8px;
    border: 1px solid var(--card-b);
    border-radius: 14px;
    overflow: hidden;
}

    .listado .row[b-mwgmtaftnb] {
        display: grid;
        grid-template-columns: minmax(180px, 1fr) minmax(100px, 0.8fr) minmax(140px, 1.0fr) minmax(200px, 2.5fr) 60px;
        gap: 12px;
        align-items: start;
        padding: 12px 16px;
        background: #fff;
        border-bottom: 1px solid #f1f5f9;
    }

        .listado .row:last-child[b-mwgmtaftnb] {
            border-bottom: none;
        }

    .listado .actions[b-mwgmtaftnb] {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 6px;
    }

.topline[b-mwgmtaftnb] {
    display: flex;
    gap: 12px;
    align-items: center;
}

.meta[b-mwgmtaftnb] {
    font-size: 12.5px;
    margin-top: 2px;
}

.icon-btn[b-mwgmtaftnb] {
    width: 32px;
    height: 32px;
    border: 1px solid var(--card-b);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
}

    .icon-btn:hover[b-mwgmtaftnb] {
        background: #f3f4f6;
    }

/* Col 1: título y componente */
.c-left .topline[b-mwgmtaftnb] {
    display: flex;
    gap: 10px;
    align-items: center;
}

.c-left .sol[b-mwgmtaftnb] {
    font-weight: 300;
    color: var(--txt-3, #6f7072) !important;
}

.c-left .componente-name[b-mwgmtaftnb] {
    font-weight: 500;
}

/* Col 2: leadtime + id único */
.c-meta[b-mwgmtaftnb] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
}

.btn-sm.lead[b-mwgmtaftnb] {
    all: unset;
}

.leadtime[b-mwgmtaftnb] {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

    .leadtime.is-empty[b-mwgmtaftnb] {
        background: transparent;
        border: none;
        padding: 0;
    }

        .leadtime.is-empty[b-mwgmtaftnb]::before {
            content: "\00a0";
            display: inline-block;
            min-width: 84px;
            height: 22px;
        }

.c-meta .uid[b-mwgmtaftnb] {
    font-size: 12.5px;
}

    .c-meta .uid:empty[b-mwgmtaftnb]::before {
        content: "\00a0";
        display: inline-block;
        min-width: 160px;
        height: 18px;
    }

/* Col 3: WR / WO */
.c-ww[b-mwgmtaftnb] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    white-space: nowrap;
    min-width: 160px;
}

    .c-ww .wr[b-mwgmtaftnb],
    .c-ww .wo[b-mwgmtaftnb] {
        font-weight: 500;
        color: var(--txt-3, #6f7072) !important;
    }

        .c-ww .wr:empty[b-mwgmtaftnb]::before,
        .c-ww .wo:empty[b-mwgmtaftnb]::before {
            content: "\00a0";
            display: inline-block;
            min-width: 160px;
            height: 18px;
        }

/* Col 4: descripción + fecha (gris medio) */

    .c-desc .desc[b-mwgmtaftnb] {
        font-weight: 500;
        overflow-wrap: break-word;
    }

    .c-desc .meta[b-mwgmtaftnb] {
        font-size: 12.5px;
        margin-top: 2px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 4px;
        ;
    }

    .c-desc .desc:empty[b-mwgmtaftnb]::before,
    .c-desc .meta:empty[b-mwgmtaftnb]::before {
        content: "\00a0";
        display: inline-block;
    }

/* Card con lista scrollable */
.card--with-list[b-mwgmtaftnb] {
    display: flex;
    flex-direction: column;
    min-height: 0;
}

    .card--with-list .acciones[b-mwgmtaftnb] {
        flex: 0 0 auto;
    }

    .card--with-list .listado[b-mwgmtaftnb] {
        flex: 1 1 auto;
        min-height: 0;
        overflow-y: auto;
        overflow-x: hidden;
        overscroll-behavior: contain;
    }

@supports (height:1dvh) {
    .card--with-list .listado[b-mwgmtaftnb] {
        max-height: calc(100dvh - 32rem);
    }
}

/* Responsive */
@media (max-width:880px) {
    .header-card[b-mwgmtaftnb] {
        grid-template-columns: 1fr;
    }

    .areas[b-mwgmtaftnb] {
        justify-self: end;
    }
}

@media (max-width:980px) {
    .resumen[b-mwgmtaftnb] {
        grid-template-columns: 1fr;
    }

    .listado .row[b-mwgmtaftnb] {
        grid-template-columns: 1fr;
    }

    .acciones[b-mwgmtaftnb] {
        justify-content: flex-start;
    }
}

/* Mensaje de tarjeta en cero */
.status-card.zero[b-mwgmtaftnb] {
    grid-template-columns: auto 12px 1fr; /* conservamos la grilla */
    grid-template-rows: auto auto;
}

    .status-card.zero .zero-copy[b-mwgmtaftnb] {
        grid-column: 3; /* texto en la tercera columna (lado derecho) */
        grid-row: 1 / span 2;
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .status-card.zero .zero-head[b-mwgmtaftnb] {
        font-weight: 800;
        color: #111827;
    }

    .status-card.zero .zero-sub[b-mwgmtaftnb] {
        color: var(--txt-2);
    }

/* Empty state del listado */
.empty-list[b-mwgmtaftnb] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: 48px 8px;
    color: var(--txt-2);
    text-align: center;
}

    .empty-list .emoji[b-mwgmtaftnb] {
        font-size: 20px;
    }

.zero-head[b-mwgmtaftnb] {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.zero-ico[b-mwgmtaftnb] {
    font-size: 18px;
    line-height: 1;
}


/* Ellipsis de una sola línea (genérico) */
.ellipsis-1[b-mwgmtaftnb] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Límites por cantidad de caracteres (ch = ancho de “0”) */
.trunc-32ch[b-mwgmtaftnb] {
    max-width: 32ch;
}

.trunc-28ch[b-mwgmtaftnb] {
    max-width: 28ch;
}

.trunc-22ch[b-mwgmtaftnb] {
    max-width: 22ch;
}


.c-left .componente-name[b-mwgmtaftnb] {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.c-meta .uid[b-mwgmtaftnb] {
}

    .c-meta .uid.ellipsis-1[b-mwgmtaftnb] {
    }

.c-ww .wr[b-mwgmtaftnb],
.c-ww .wo[b-mwgmtaftnb] {
}

    .c-meta .uid:empty[b-mwgmtaftnb]::before,
    .c-ww .wr:empty[b-mwgmtaftnb]::before,
    .c-ww .wo:empty[b-mwgmtaftnb]::before {
        content: "\00a0";
        display: inline-block;
        height: 18px;
    }
/* /Components/Pages/ProveedorPages/Ordenes/ProveedorOrdenes.razor.rz.scp.css */

.tab-btn[b-h395jqjfnj] {
    background-color: white;
    border: 2px solid #dee2e6;
    padding: 10px;
    border-radius: 4px 0 0 4px;
    transition: background-color 0.2s, box-shadow 0.2s;
}

    .tab-btn + .tab-btn[b-h395jqjfnj] {
        border-left: none;
        border-radius: 0 4px 4px 0;
    }

    .tab-btn.active[b-h395jqjfnj] {
        background-color: #eef0f4;
        border: 2px solid #2c2c2c;
    }

    .tab-btn:hover[b-h395jqjfnj] {
        background-color: #f5f7fa;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    }
/* /Components/Pages/ProveedorPages/Ordenes/ProveedorTrazabilidad.razor.rz.scp.css */
ul.progress-steps[b-mvrr90uicg],
ul.progress-steps-many[b-mvrr90uicg] {
    position: relative;
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
}

    ul.progress-steps[b-mvrr90uicg]::before,
    ul.progress-steps-many[b-mvrr90uicg]::before {
        content: "";
        position: absolute;
        top: 49%;
        height: 2px;
        background: #ccc;
    }

    ul.progress-steps[b-mvrr90uicg]::before {
        left: 11.1%;
        right: 7.4%;
    }

    ul.progress-steps-many[b-mvrr90uicg]::before {
        left: 8%;
        right: 5.4%;
    }

.step[b-mvrr90uicg] {
    margin-top: -5px !important;
}

.trazabilidad-text[b-mvrr90uicg] {
    max-width: 120px;
    max-height: 45px;
}

.step-label-active[b-mvrr90uicg] {
    font-size: 16px !important;
}

.step-marker-disabled[b-mvrr90uicg] {
    background-color: #8C9199;
    border: 2px solid #8C9199;
}

.step-text-disabled[b-mvrr90uicg] {
    color: #d3d3d3;
}

.btn-marker[disabled][b-mvrr90uicg] {
    pointer-events: none;
    opacity: 0.6;
}

.pointer-click[b-mvrr90uicg] {
    cursor: pointer;
}

.trazabilidad-text[b-mvrr90uicg] {
    max-width: 120px;
    max-height: 45px;
    text-align: center;
    font-size: 14px;
}

.step-label-active[b-mvrr90uicg] {
    font-size: 15px !important;
}

ul.progress-steps-many .trazabilidad-text[b-mvrr90uicg] {
    font-size: 14px;
    max-width: 110px;
}

.trazabilidad-text.pointer-click[b-mvrr90uicg] {
    display: inline-block;
    cursor: pointer;
}
/* /Components/Pages/ProveedorPages/TabsTrazabilidad/SubTabsTareaReparcion/Pieces.razor.rz.scp.css */
body .table-main-container[b-n1lu9l0r5g] {
    margin: 0 auto;
    padding: 0 15px;
    font-size: 17px;
}

.scrollable-content[b-n1lu9l0r5g] {
    margin-top: -1px;
}


.btn-suggested-activity[b-n1lu9l0r5g] {
    border: none;
    color: #495057;
    background-color: #f0f2f5;
    font-size: 15px;
    border-radius: 25rem;
    text-align: center;
    cursor: none;
    white-space: nowrap;
}

.activity-column[b-n1lu9l0r5g] {
    gap: 0.75rem;
}

.info-icon[b-n1lu9l0r5g] {
    margin-left: 0.5rem;
    flex-shrink: 0;
}

.work-dropdown[b-n1lu9l0r5g] {
    min-width: 140px;
    background-color: white;
    margin-right: 20px;
    font-size: 15px;
    padding: 0.5rem 0.5rem;
    border-radius: 0.25rem;
}


/* Layout con divs */
.header-row[b-n1lu9l0r5g] {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 10px;
}

.data-row[b-n1lu9l0r5g] {
    display: flex;
    align-items: center;
    min-height: 70px;
}


/* col header  */
.col-piece-group[b-n1lu9l0r5g] {
    flex: 0 0 25%;
    min-width: 180px;
}

.col-ciclo-actual[b-n1lu9l0r5g] {
    flex: 0 0 12%;
    min-width: 70px;
    text-align: right;
}

.col-ciclo-max[b-n1lu9l0r5g] {
    flex: 0 0 12%;
    min-width: 70px;
    text-align: right;
}

.col-actividad[b-n1lu9l0r5g] {
    flex: 0 0 21%;
    min-width: 70px;
    text-align: center;
}

.col-trabajo[b-n1lu9l0r5g] {
    flex: 0 0 15%;
    min-width: 70px;
}

.col-documento[b-n1lu9l0r5g] {
    flex: 0 0 15%;
    min-width: 70px;
    text-align: right;
}

.col-documentName[b-n1lu9l0r5g] {
    flex: 0 0 39%;
    min-width: 240px;
}

.col-file[b-n1lu9l0r5g] {
    flex: 0 0 33%;
    min-width: 200px;
}

.pieza-nombre[b-n1lu9l0r5g] {
    font-weight: normal;
    font-size: 15px;
    margin-bottom: 0.25rem;
}

.pieza-id[b-n1lu9l0r5g] {
    color: #6c757d;
    font-size: 14px;
}

.ciclo-text[b-n1lu9l0r5g] {
    color: #6c757d;
    font-size: 16px;
}

.btn-documento[b-n1lu9l0r5g] {
    color: black;
    text-decoration: none;
    font-weight: normal;
    background: none;
    border: none;
    padding: 0;
    font-size: 15px;
    white-space: nowrap;
    cursor: pointer;
}
/* /Components/Pages/ReportePages/Views/AnalyticsTabs/EtapasTabs/EtapasActuales.razor.rz.scp.css */
.image-container[b-340vrx5mry] {
    position: relative; 
    display: inline-block;
}

.circle-alert[b-340vrx5mry] {
    position: absolute;
    top: -6px; 
    right: 6px; 
    width: 16px;
    height: 16px;
    background: #FF5E2C;
    border-radius: 50%;
    border: 2px solid #fff;
    z-index: 10;
    box-shadow: 0 0 2px #aaa;
}
/* /Components/Pages/ReportePages/Views/AnalyticsTabs/ResumenTabs/OperationalDash.razor.rz.scp.css */
.tooltip-inner[b-ldqp3cx6q4] {
    white-space: pre-line;
}
/* /Components/Pages/ReportePages/Views/AnalyticsTabs/ResumenTabs/Resumen.razor.rz.scp.css */
.tab-btn[b-7az9oqvj92] {
    background-color: white;
    border: 2px solid #dee2e6;
    padding: 10px;
    border-radius: 4px 0 0 4px;
    transition: background-color 0.2s, box-shadow 0.2s;
}

    .tab-btn + .tab-btn[b-7az9oqvj92] {
        border-left: none;
        border-radius: 0 4px 4px 0;
    }

    .tab-btn.active[b-7az9oqvj92] {
        background-color: #eef0f4;
        border: 2px solid #2c2c2c;
    }

    .tab-btn:hover[b-7az9oqvj92] {
        background-color: #f5f7fa;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    }
/* /Components/Pages/ReportePages/Views/AnalyticsTabs/ResumenTabs/StrategicDash.razor.rz.scp.css */
.cards-row-container[b-j3nwl0eoeq] {
    display: flex;
    gap: 16px;
    width: 100%;
    margin-top: 16px;
    align-items: stretch;
}

.card-left[b-j3nwl0eoeq] {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.card-right[b-j3nwl0eoeq] {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

/* Responsive: En pantallas peque�as, las cards se apilan verticalmente */
@media (max-width: 1024px) {
    .cards-row-container[b-j3nwl0eoeq] {
        flex-direction: column;
    }

    .card-left[b-j3nwl0eoeq],
    .card-right[b-j3nwl0eoeq] {
        flex: 1 1 100%;
    }
}
