@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;
    overflow-x: hidden;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.message-wrapper[b-4poahc3mqe] {
    display: flex;
    margin-bottom: 24px;
    width: 100%;
    align-items: flex-start;
    min-width: 0;
}

.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%;
    /* min-width:auto (el default de un ítem flex) IMPIDE encogerse por debajo del contenido y GANA
       sobre max-width: sin este 0, una tabla ancha estiraba la burbuja más allá del 75% y rompía el
       ancho del chat. Es la causa raíz del desborde, no el estilo de la tabla. */
    min-width: 0;
}

.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;
    /* Misma razón que en .message-content-wrapper: es ítem del flex column de arriba y debe poder
       encogerse para que el wrapper de la tabla tenga un ancho contra el cual recortar. */
    min-width: 0;
    max-width: 100%;
}

/* CAUSA RAÍZ del desborde con tablas anchas: .message-content-wrapper usa align-items:flex-start,
   así que la burbuja NO hace stretch y su ancho es fit-content — lo define su CONTENIDO. Una tabla
   ancha la infla y ni min-width:0 ni max-width:100% la contienen (no está siendo comprimida, está
   siendo dimensionada desde adentro). Cuando el mensaje trae tabla, la burbuja pasa a ocupar el
   ancho disponible: recién ahí el wrapper tiene un ancho concreto contra el cual recortar y hacer
   scroll. Se nota sobre todo con el panel de conversaciones desplegado o en pantallas chicas,
   que es cuando la tabla realmente excede el espacio. */
.message-bubble:has(.md-table-wrap)[b-4poahc3mqe] {
    width: 100%;
}

.message-text[b-4poahc3mqe] {
    min-width: 0;
    max-width: 100%;
}

.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;
}

/* Markdown de la respuesta del asistente (MarkdownUtils.ToHtml)
   ⚠️ ::deep es OBLIGATORIO acá: el HTML que se inyecta con MarkupString NO recibe el atributo de
   scope que Blazor agrega a los elementos declarados en el .razor, así que un selector normal
   (.message-text strong) NO lo alcanzaría y los estilos no se aplicarían. */
.message-text[b-4poahc3mqe]  p {
    margin: 0 0 8px;
}

.message-text[b-4poahc3mqe]  p:last-child {
    margin-bottom: 0;
}

.message-text[b-4poahc3mqe]  strong {
    font-weight: 600;
    color: #111827;
}

.message-text[b-4poahc3mqe]  em {
    font-style: italic;
}

.message-text[b-4poahc3mqe]  code {
    background-color: #f1f3f5;
    color: #0b5ed7;
    padding: 1px 5px;
    border-radius: 4px;
    font-size: 0.92em;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.message-text[b-4poahc3mqe]  .md-list {
    margin: 4px 0 8px;
    padding-left: 20px;
}

.message-text[b-4poahc3mqe]  .md-list li {
    margin: 2px 0;
}

.message-text[b-4poahc3mqe]  .md-h {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin: 10px 0 6px;
}

/* Tabla ancha: el que scrollea es el WRAPPER, no la tabla ni el contenedor de mensajes.
   La tabla conserva su ancho natural (max-content) para no comprimir las columnas, y el wrapper
   la recorta al ancho disponible de la burbuja. Requiere los min-width:0 de la cadena flex de
   abajo; sin ellos el wrapper hereda el ancho del contenido y no recorta nada. */
.message-text[b-4poahc3mqe]  .md-table-wrap {
    /* width (no max-width): el ancho queda ATADO al del padre en vez de depender del contenido.
       Con max-width, si algún ancestro se dimensiona por su contenido el 100% se vuelve circular
       y la tabla termina definiendo el ancho en lugar de ser recortada por él. */
    width: 100%;
    overflow-x: auto;
    margin: 6px 0 10px;
}

.message-text[b-4poahc3mqe]  .md-table {
    width: max-content;
    max-width: none;
    border-collapse: collapse;
    font-size: 14px;
}

.message-text[b-4poahc3mqe]  .md-table th {
    text-align: left;
    font-weight: 600;
    color: #495057;
    border-bottom: 1px solid #dee2e6;
    padding: 4px 10px;
    white-space: nowrap;
}

.message-text[b-4poahc3mqe]  .md-table td {
    border-bottom: 1px solid #f1f3f5;
    padding: 4px 10px;
    vertical-align: top;
}

/* 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: rgba(45, 52, 63, 1);
            box-shadow: 0 6px 16px rgba(45, 52, 63, 1) !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;
}


/* History Placeholder */
.history-placeholder[b-36yyc5ylyx] {
    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-36yyc5ylyx] {
    opacity: 0;
    transform: translateX(-20px);
    pointer-events: none;
}

/* Scroll personalizado para history-placeholder */
.history-placeholder[b-36yyc5ylyx]::-webkit-scrollbar {
    width: 4px;
}

.history-placeholder[b-36yyc5ylyx]::-webkit-scrollbar-track {
    background: transparent;
}

.history-placeholder[b-36yyc5ylyx]::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 2px;
}

.history-placeholder[b-36yyc5ylyx]::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}
/* /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/DisclaimerModal.razor.rz.scp.css */
/* Backdrop que solo cubre el área del módulo, no todo el viewport */
.disclaimer-modal-backdrop[b-l9zrnhf8kx] {
    position: fixed;
    top: 230px;
    left: 220px;
    right: 0;
    bottom: 0;
    z-index: 9998;
    pointer-events: all;
}

.disclaimer-modal-container[b-l9zrnhf8kx] {
    position: fixed;
    top: 230px;
    left: 220px;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    pointer-events: none;
}

.disclaimer-modal[b-l9zrnhf8kx] {
    background: #F0F3F8;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    max-width: 1230px;
    width: 100%;
    pointer-events: all;
}

/* Body del modal */
.disclaimer-modal-body[b-l9zrnhf8kx] {
    padding: 2rem;
}
/* /Components/Components/Atom/Inputs/InputTextFile.razor.rz.scp.css */
:root[b-lrg2twhl49] {
    --border-color: #e2e8f0;
    --focus-color: #3b82f6;
    --bg-light: #f8fafc;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --danger: #ef4444;
    --dark-btn: #2d333d;
}

.app-container[b-lrg2twhl49] {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
}

.input-group-wrapper[b-lrg2twhl49] {
    flex: 1;
    background: white;
    border: 1px solid rgba(175, 179, 187, 1);
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(175, 179, 187, 1);
    transition: border-color 0.2s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

    .input-group-wrapper:focus-within[b-lrg2twhl49] {
        border-color: var(--focus-color);
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }

.file-preview-area[b-lrg2twhl49] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px;
    max-height: 180px;
    overflow-y: auto;
}

.file-card[b-lrg2twhl49] {
    border: 1px solid #edf2f7;
    display: flex;
    align-items: center;
    background: rgba(247, 248, 250, 1);
    border-radius: 6px;
    padding: 8px 10px;
    width: 328px;
}

.file-details[b-lrg2twhl49] {
    flex: 1;
}

.file-name[b-lrg2twhl49] {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}

.truncate-text[b-lrg2twhl49] {
    max-width: 200px;
}

.file-info-text[b-lrg2twhl49] {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.remove-btn[b-lrg2twhl49] {
    background: transparent;
    border: none;
    color: rgba(45, 52, 63, 1);
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s;
    display: flex;
}

    .remove-btn:hover[b-lrg2twhl49] {
        color: var(--danger);
    }

.text-area-container[b-lrg2twhl49] {
    position: relative;
    display: flex;
    align-items: center;
}

.error-icon[b-lrg2twhl49] {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: help;
}


#message-input[b-lrg2twhl49] {
    width: 100%;
    border: none;
    outline: none;
    padding: 14px 45px 14px 16px;
    font-size: 14px;
    line-height: 1.5;
    resize: none;
    color: var(--text-main);
    background: transparent;
    min-height: 50px;
    max-height: 200px;
}

.attach-label[b-lrg2twhl49] {
    position: absolute;
    right: 12px;
    margin-top: 5px;
    cursor: pointer;
    color: var(--text-muted);
    display: flex;
}

#send-btn[b-lrg2twhl49] {
    background-color: var(--dark-btn);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 10px 24px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    height: 44px;
    transition: opacity 0.2s;
}

    #send-btn:disabled[b-lrg2twhl49] {
        background-color: #94a3b8;
        cursor: not-allowed;
    }
/* /Components/Components/Atom/Messaging/ChatMessaging.razor.rz.scp.css */
.chat-container[b-nr6zpovhcv] {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 1);
    min-height: 0;
    overflow: hidden;
}

.messages-container[b-nr6zpovhcv] {
    flex-grow: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
}

.message-wrapper[b-nr6zpovhcv] {
    display: flex;
    margin-bottom: 24px;
    width: 100%;
    align-items: flex-start;
    /* Align icons to the bottom of the message group */
}

.user-message[b-nr6zpovhcv] {
    justify-content: flex-end;
}

.other-message[b-nr6zpovhcv] {
    justify-content: flex-start;
}

.message-content-wrapper[b-nr6zpovhcv] {
    display: flex;
    flex-direction: column;
    max-width: 75%;
}

.user-message .message-content-wrapper[b-nr6zpovhcv] {
    align-items: flex-end;
}

.other-message .message-content-wrapper[b-nr6zpovhcv] {
    align-items: flex-start;
}

.message-bubble[b-nr6zpovhcv] {
    padding: 16px 20px;
    border-radius: 12px;
    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;
}

.color-mining[b-nr6zpovhcv] {
    background-color: rgba(246, 247, 250, 1);
}

.color-vendor[b-nr6zpovhcv] {
    background-color: rgba(255, 247, 244, 1)
}

.user-bubble[b-nr6zpovhcv] {
    border-top-right-radius: 4px;
}

.other-bubble[b-nr6zpovhcv] {
    border-top-left-radius: 4px;
}

/* Icons */
.message-icon[b-nr6zpovhcv] {
    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-nr6zpovhcv] {
    background-color: rgba(45, 52, 63, 1);
    /* Dark color */
    margin-right: 12px;
    margin-top: 23px;
}

.user-initials[b-nr6zpovhcv] {
    color: white;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    user-select: none;
}

.other-icon[b-nr6zpovhcv] {
    background-color: rgba(255, 94, 44, 1);
    /* Orange color */
    margin-right: 12px;
    margin-top: 23px;
}

.message-icon img[b-nr6zpovhcv] {
    width: 20px;
    height: 20px;
}

/* Typography */
.message-time-top[b-nr6zpovhcv] {
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 4px;
    font-weight: 500;
}

.message-time-bottom[b-nr6zpovhcv] {
    font-size: 14px;
    margin-top: 8px;
    display: block;
    color: #6c757d;
}

/* Typing Indicator */
.typing-indicator[b-nr6zpovhcv] {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 0;
}

.typing-dot[b-nr6zpovhcv] {
    width: 8px;
    height: 8px;
    background-color: #000000;
    border-radius: 50%;
    animation: typing-b-nr6zpovhcv 1.4s infinite ease-in-out both;
}

    .typing-dot:nth-child(1)[b-nr6zpovhcv] {
        animation-delay: -0.32s;
    }

    .typing-dot:nth-child(2)[b-nr6zpovhcv] {
        animation-delay: -0.16s;
    }

@keyframes typing-b-nr6zpovhcv {

    0%, 80%, 100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

.empty-chat[b-nr6zpovhcv] {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
}

/* Message Footer */
.message-footer[b-nr6zpovhcv] {
    padding-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-link-row[b-nr6zpovhcv] {
    font-size: 13px;
    font-weight: 500;
}

.footer-link[b-nr6zpovhcv] {
    color: #343a40;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

    .footer-link:hover[b-nr6zpovhcv] {
        color: #252a2e;
        text-decoration: underline;
    }

    .footer-link svg[b-nr6zpovhcv] {
        margin-top: -1px;
    }

.footer-actions[b-nr6zpovhcv] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.action-btn[b-nr6zpovhcv] {
    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-nr6zpovhcv] {
        background-color: #f1f3f5;
    }

    .action-btn img[b-nr6zpovhcv] {
        width: 18px;
        height: 18px;
        opacity: 0.6;
        transition: opacity 0.2s;
    }

    .action-btn:hover img[b-nr6zpovhcv] {
        opacity: 0.8;
    }

    .action-btn:active img[b-nr6zpovhcv] {
        opacity: 1;
    }

.white-icon[b-nr6zpovhcv] {
    filter: brightness(0) invert(1);
}

.action-btn-wrapper[b-nr6zpovhcv] {
    position: relative;
    display: inline-block;
}

    .action-btn-wrapper .tooltip-bottom[b-nr6zpovhcv] {
        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-nr6zpovhcv] {
        visibility: visible;
        opacity: 1;
    }


.file-message-area[b-nr6zpovhcv] {
    display: flex;
    padding-top: 8px;
    flex-wrap: wrap;
    gap: 10px;
    border-bottom: 1px solid #f1f5f9;
    max-height: 180px;
    overflow-y: auto;
}

.file-card[b-nr6zpovhcv] {
    border: 1px solid #edf2f7;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 1);
    border-radius: 6px;
    padding: 8px 10px;
    width: 328px;
}


.file-details[b-nr6zpovhcv] {
    flex: 1;
}

.file-name[b-nr6zpovhcv] {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}

.truncate-text[b-nr6zpovhcv] {
    max-width: 200px;
}

.file-info-text[b-nr6zpovhcv] {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Search Highlights */
[b-nr6zpovhcv] .search-highlight {
    background-color: #FFB7004D;
}

[b-nr6zpovhcv] .search-highlight-active {
    background-color: #FFB700;
    font-weight: 400;
    scroll-margin-top: 20px;
}

.message-highlight[b-nr6zpovhcv] {
    background-color: #ffeaa7 !important;
    box-shadow: 0 0 15px rgba(253, 203, 110, 0.5) !important;
}
/* /Components/Components/Atom/Messaging/ChatSearchBar.razor.rz.scp.css */
.chat-search-bar[b-452t671mvs] {
    background: transparent;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 10;
}

.search-input-wrapper[b-452t671mvs] {
    display: flex;
    align-items: center;
    background: transparent;
    border-bottom: 1px solid #e5e7eb;
    padding: 8px 0;
    gap: 12px;
}

.search-icon[b-452t671mvs] {
    color: #6b7280;
    font-size: 16px;
    flex-shrink: 0;
}

.search-clear-icon[b-452t671mvs] {
    background: transparent;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
}

.search-clear-icon:hover[b-452t671mvs] {
    color: #1f2937;
}

.search-clear-icon i[b-452t671mvs] {
    font-size: 14px;
}

.search-input[b-452t671mvs] {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    color: #1f2937;
    padding: 0;
}

.search-input[b-452t671mvs]::placeholder {
    color: #9ca3af;
}

.search-controls[b-452t671mvs] {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.search-counter[b-452t671mvs] {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
    min-width: 45px;
    text-align: center;
}

.search-nav-btn[b-452t671mvs] {
    background: transparent;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.search-nav-btn:hover:not(:disabled)[b-452t671mvs] {
    background: #f3f4f6;
    color: #1f2937;
}

.search-nav-btn:disabled[b-452t671mvs] {
    opacity: 0.3;
    cursor: not-allowed;
}

.search-nav-btn i[b-452t671mvs] {
    font-size: 14px;
}
/* /Components/Components/Atom/Selects/DropdownMultiple.razor.rz.scp.css */
.ddm-backdrop[b-w6w4k813ue] {
    position: fixed;
    inset: 0;
    z-index: 999;
}

.ddm-container[b-w6w4k813ue] {
    position: relative;
}

.ddm-container .dropdown-menu[b-w6w4k813ue] {
    z-index: 1000;
    min-width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 0.25rem 0;
}

.ddm-row[b-w6w4k813ue] {
    cursor: pointer;
    padding: 0.45rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-left: 3px solid transparent;
    transition: background-color 0.12s ease;
    color: #2D343F;
    font-size: 0.875rem;
}

.ddm-check[b-w6w4k813ue] {
    position: static;
    flex-shrink: 0;
    margin: 0;
    cursor: pointer;
    accent-color: #2D343F;
}

.ddm-row:hover[b-w6w4k813ue] {
    background-color: rgba(45, 52, 63, 0.06);
}

.ddm-row.ddm-selected[b-w6w4k813ue] {
    font-weight: 600;
    color: #2D343F;
    border-left-color: #2D343F;
    background-color: rgba(45, 52, 63, 0.07);
}

.ddm-row.ddm-selected:hover[b-w6w4k813ue] {
    background-color: rgba(45, 52, 63, 0.13);
}

.ddm-row.ddm-disabled[b-w6w4k813ue] {
    cursor: default;
    pointer-events: none;
    opacity: 0.4;
}
/* /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/Components/BulkAction/BulkActionList.razor.rz.scp.css */
.bal-wrap[b-93ew55dy4r] {
    margin-top: 8px;
    border: 1px solid var(--card-b);
    border-radius: 14px;
    overflow: hidden;
}

/* Toolbar */
.bal-toolbar[b-93ew55dy4r] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 10px 16px;
    background: #fff;
    border-bottom: 1px solid var(--card-b);
}

.bal-cta[b-93ew55dy4r] {
    min-width: 140px !important;
    font-size: 15px !important;
}

.bal-cta:disabled[b-93ew55dy4r] {
    opacity: .45;
    pointer-events: none;
}

/* Header y filas: misma grilla */
.bal-header[b-93ew55dy4r],
.bal-row[b-93ew55dy4r] {
    display: grid;
    /* sin check: 4 cols + actions */
    grid-template-columns: 1.6fr 0.9fr 2fr 60px;
    gap: 12px;
    align-items: center;
    padding: 10px 16px;
    border-bottom: 1px solid #f1f5f9;
}

/* Con checkbox activo, el componente agrega la primera col */
.bal-wrap[data-has-check="true"] .bal-header[b-93ew55dy4r],
.bal-wrap[data-has-check="true"] .bal-row[b-93ew55dy4r] {
    grid-template-columns: 36px 1.6fr 0.9fr 2fr 60px;
}

/* Con columna dinámica */
.bal-wrap[data-has-dynamic="true"] .bal-header[b-93ew55dy4r],
.bal-wrap[data-has-dynamic="true"] .bal-row[b-93ew55dy4r] {
    grid-template-columns: 1.6fr 0.9fr 1.6fr 1fr 60px;
}

.bal-wrap[data-has-check="true"][data-has-dynamic="true"] .bal-header[b-93ew55dy4r],
.bal-wrap[data-has-check="true"][data-has-dynamic="true"] .bal-row[b-93ew55dy4r] {
    grid-template-columns: 36px 1.6fr 0.9fr 1.6fr 1fr 60px;
}

/* Con columna de proveedor (después de Reparación) */
.bal-wrap[data-has-vendor="true"] .bal-header[b-93ew55dy4r],
.bal-wrap[data-has-vendor="true"] .bal-row[b-93ew55dy4r] {
    grid-template-columns: 1.6fr 0.9fr 1.6fr 1fr 60px;
}

.bal-wrap[data-has-check="true"][data-has-vendor="true"] .bal-header[b-93ew55dy4r],
.bal-wrap[data-has-check="true"][data-has-vendor="true"] .bal-row[b-93ew55dy4r] {
    grid-template-columns: 36px 1.6fr 0.9fr 1.6fr 1fr 60px;
}

/* Proveedor + dinámica juntas */
.bal-wrap[data-has-vendor="true"][data-has-dynamic="true"] .bal-header[b-93ew55dy4r],
.bal-wrap[data-has-vendor="true"][data-has-dynamic="true"] .bal-row[b-93ew55dy4r] {
    grid-template-columns: 1.6fr 0.9fr 1.4fr 1fr 1fr 60px;
}

.bal-wrap[data-has-check="true"][data-has-vendor="true"][data-has-dynamic="true"] .bal-header[b-93ew55dy4r],
.bal-wrap[data-has-check="true"][data-has-vendor="true"][data-has-dynamic="true"] .bal-row[b-93ew55dy4r] {
    grid-template-columns: 36px 1.6fr 0.9fr 1.4fr 1fr 1fr 60px;
}

/* Header */
.bal-header[b-93ew55dy4r] {
    background: #f8fafc;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: .03em;
    position: sticky;
    top: 0;
    z-index: 10;
}

.bal-header .bal-cell--leadtime[b-93ew55dy4r] {
    background: transparent;
}

/* Contenedor scrolleable */
.bal-scroll-container[b-93ew55dy4r] {
    max-height: calc(100vh - 550px);
    min-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Scrollbar personalizada */
.bal-scroll-container[b-93ew55dy4r]::-webkit-scrollbar {
    width: 8px;
}

.bal-scroll-container[b-93ew55dy4r]::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}

.bal-scroll-container[b-93ew55dy4r]::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.bal-scroll-container[b-93ew55dy4r]::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Fila */
.bal-row[b-93ew55dy4r] {
    background: #fff;
}

.bal-row:last-child[b-93ew55dy4r] {
    border-bottom: none;
}

.bal-row--selected[b-93ew55dy4r] {
    background: #f0f9ff;
}

/* Celdas */
.bal-cell--check[b-93ew55dy4r] {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bal-cell--component[b-93ew55dy4r] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bal-cell--leadtime[b-93ew55dy4r] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Eliminar fondos de leadtime dentro de este componente */
.bal-cell--leadtime .leadtime[b-93ew55dy4r] {
    background: transparent !important;
}

.bal-cell--repair[b-93ew55dy4r] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bal-cell--vendor[b-93ew55dy4r] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bal-vendor-value[b-93ew55dy4r] {
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* El track de la columna es fijo (60px) pero el contenido es variable: la cantidad de íconos
   depende de la acción y, en Calificar, de si la fila ya está calificada. Con botones de 32px
   que no se comprimen (flex-shrink: 0), 3 íconos miden 108px y desbordan el track.
   `justify-self: end` saca la celda del estiramiento al track: mide su contenido y crece hacia
   la izquierda desde el borde derecho, así que los íconos quedan donde ya estaban PERO el
   getBoundingClientRect() los abarca. Eso es lo que necesita el spotlight de Driver.js
   (paso 1 del tour de acciones masivas, AIS-3555) para recortar sobre el ancho real.
   `min-width` sostiene la celda del header y el skeleton, que no tienen contenido. */
.bal-cell--actions[b-93ew55dy4r] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 6px;
    justify-self: end;
    min-width: 60px;
}

/* Contenido de celdas */
.bal-sol[b-93ew55dy4r] {
    font-size: 14px;
    color: #6f7072;
    font-weight: 500;
}

.bal-comp-name[b-93ew55dy4r] {
    font-weight: 600;
    font-size: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 28ch;
}

.bal-uid[b-93ew55dy4r] {
    font-size: 13px;
    color: #6b7280;
}

.bal-wr[b-93ew55dy4r], .bal-wo[b-93ew55dy4r] {
    font-size: 14px;
    font-weight: 500;
    color: #6f7072;
}

.bal-desc[b-93ew55dy4r] {
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 36ch;
}

/* Columna dinámica */
.cell-status-ok[b-93ew55dy4r] {
    color: #10b981;
    font-weight: 600;
    font-size: 14px;
}

.cell-status-warn[b-93ew55dy4r] {
    color: #f59e0b;
    font-weight: 600;
    font-size: 14px;
}

.bal-dynamic-value[b-93ew55dy4r] {
    font-size: 14px;
}

/* Botón icono */
.bal-icon-btn[b-93ew55dy4r] {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--card-b);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    padding: 0;
    color: #374151;
    flex-shrink: 0;
}

.bal-icon-btn:hover[b-93ew55dy4r] {
    background: #f3f4f6;
}

/* Skeleton */
.bal-skel[b-93ew55dy4r] {
    background: #f3f4f6;
    border-radius: 6px;
    height: 14px;
}

/* Empty list */
.empty-list[b-93ew55dy4r] {
    padding: 40px 20px;
    text-align: center;
    color: #6b7280;
}

.empty-list .emoji[b-93ew55dy4r] {
    font-size: 48px;
    display: block;
    margin-bottom: 12px;
}

/* Review dropdown with SVG icons (AIS-3465, AIS-3466) */
.review-select-container[b-93ew55dy4r] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-icon[b-93ew55dy4r] {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.review-dropdown[b-93ew55dy4r] {
    flex: 1;
    min-width: 100px;
    max-width: 140px;
}

/* Estilo para dropdown deshabilitado (readonly) */
.review-dropdown:disabled[b-93ew55dy4r] {
    background-color: #f3f4f6;
    color: #6b7280;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 860px) {
    .bal-header[b-93ew55dy4r],
    .bal-row[b-93ew55dy4r] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Components/FeatureReleaseBell/NotificationBellComponent.razor.rz.scp.css */
.notification-bell-wrapper[b-cpl0nw13xa] {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.notification-bell-toggle[b-cpl0nw13xa] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: none;
    background: none;
    cursor: pointer;
    border-radius: 50%;
}

    .notification-bell-toggle:hover[b-cpl0nw13xa] {
        background-color: #F7F8FA;
    }

.notification-bell-icon[b-cpl0nw13xa] {
    width: 22px;
    height: 27px;
}

.notification-bell-dot[b-cpl0nw13xa] {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #FF5E2C;
    border: 1.5px solid #fff;
}

.notification-bell-overlay[b-cpl0nw13xa] {
    position: fixed;
    inset: 0;
    z-index: 1040;
    background: transparent;
}

.notification-bell-dropdown[b-cpl0nw13xa] {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 432px;
    max-height: 480px;
    overflow-y: auto;
    background-color: #F7F8FA;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1050;
    padding: 16px 0;
}

.notification-bell-header[b-cpl0nw13xa] {
    font-weight: 700;
    font-size: 1rem;
    color: #2D343F;
    padding: 0 16px 12px;
}

.notification-bell-empty[b-cpl0nw13xa] {
    color: #6c757d;
    font-size: 0.875rem;
    text-align: center;
    padding: 24px 16px;
}

.notification-bell-list[b-cpl0nw13xa] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 16px;
}

.notification-bell-card[b-cpl0nw13xa] {
    border-radius: 8px;
    padding: 12px;
    background-color: #F7F8FA;
}

.notification-bell-card--new[b-cpl0nw13xa] {
    background-color: #FFF9F7;
    border: 1px solid #FF9A7B;
}

.notification-bell-card--previous[b-cpl0nw13xa] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background-color: #fff;
}

.notification-bell-card__info[b-cpl0nw13xa] {
    min-width: 0;
}

.notification-bell-card__title[b-cpl0nw13xa] {
    font-weight: 600;
    color: #2D343F;
    font-size: 0.9rem;
}

.notification-bell-card__text[b-cpl0nw13xa] {
    color: #6c757d;
    font-weight: 500;
    font-size: 0.825rem;
    margin-top: 2px;
}

.notification-bell-card__meta[b-cpl0nw13xa] {
    color: #9aa0ab;
    font-size: 0.775rem;
    margin-top: 6px;
}

.notification-bell-card__actions[b-cpl0nw13xa] {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.notification-bell-btn[b-cpl0nw13xa] {
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.8125rem;
    padding: 0.4rem 0.85rem;
    border: none;
    cursor: pointer;
}

.notification-bell-card__actions .notification-bell-btn[b-cpl0nw13xa] {
    flex: 1 1 0;
    text-align: center;
}

.notification-bell-btn--primary[b-cpl0nw13xa] {
    background-color: #2b2d3c;
    color: #fff;
}

    .notification-bell-btn--primary:hover[b-cpl0nw13xa] {
        background-color: #1f2230;
        color: #fff;
    }

.notification-bell-btn--outline[b-cpl0nw13xa] {
    background-color: transparent;
    color: #2b2d3c;
    border: 1px solid #2b2d3c;
    font-weight: 400;
    font-size: 0.875rem;
    padding: 0.55rem 1.1rem;
}

    .notification-bell-btn--outline:hover[b-cpl0nw13xa] {
        background-color: #F7F8FA;
    }

.notification-bell-accordion-toggle[b-cpl0nw13xa] {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    border-top: 1px solid #eceef1;
    margin-top: 16px;
    padding: 12px 16px 0;
    color: #2D343F;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
}

.notification-bell-list--previous[b-cpl0nw13xa] {
    padding: 12px 16px 0;
}
/* /Components/Components/FloatingHelpButton.razor.rz.scp.css */
.req[b-u8m98t3ua9] {
    color: #e63900;
}

.text-title[b-u8m98t3ua9] {
    margin: 0px;
    font-weight: 600;
    line-height: 2rem;
    word-break: break-word;
}

.floating-help-button-container[b-u8m98t3ua9] {
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.floating-button[b-u8m98t3ua9] {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    float: left;
    border-radius: 30px 8px 30px 30px;
    background-color: rgb(224, 107, 34);
    box-shadow: none;
    color: rgb(255, 255, 255);
    z-index: 2147483647;
    cursor: pointer;
    padding: 8px;
    padding-right: 15px;
    transition: 0.1s ease-out;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

.support-form-container[b-u8m98t3ua9] {
    width: 400px;
    margin-bottom: 10px;
    border-radius: 8px;
    background-color: white;
    max-height: 70vh;
    overflow-y: auto;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

    .support-form-container .card-header-form[b-u8m98t3ua9] {
        padding: 0.75rem 1.25rem;
        height: 184px;
        background: linear-gradient(41.43deg, rgb(207, 0, 0) 0%, rgb(247, 150, 5) 100%) 0% 0% / contain;
        color: white;
        border-bottom: 1px solid rgb(200, 95, 30);
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

        .support-form-container .card-header-form .close[b-u8m98t3ua9] {
            color: white;
            opacity: 0.8;
            text-shadow: none;
        }

    .support-form-container .card-title[b-u8m98t3ua9] {
        font-size: 1.1rem;
        color: white;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif
    }

    .support-form-container .btn-primary[b-u8m98t3ua9] {
        background-color: rgb(224, 107, 34);
        border-color: rgb(224, 107, 34);
        width: 100%;
    }

        .support-form-container .btn-primary:hover[b-u8m98t3ua9] {
            background-color: rgb(200, 95, 30);
            border-color: rgb(200, 95, 30);
        }

.file-drop-zone[b-u8m98t3ua9] {
    position: relative;
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    transition: background-color 0.2s ease-in-out;
    cursor: pointer;
    flex-grow: 1;
}

    .file-drop-zone:hover[b-u8m98t3ua9] {
        border-color: rgb(224, 107, 34);
    }

.file-drop-zone-drag-over[b-u8m98t3ua9] {
    background-color: #f0f0f0;
    border-color: rgb(224, 107, 34);
}

.file-drop-zone .file-input-help[b-u8m98t3ua9] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.file-drop-zone .file-drop-zone-label[b-u8m98t3ua9] {
    cursor: pointer;
    color: #666;
    display: block;
    width: 100%;
    height: 100%;
}

.file-upload-wrapper[b-u8m98t3ua9] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-remove-file[b-u8m98t3ua9] {
    background: none;
    border: none;
    color: #888;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

    .btn-remove-file:hover[b-u8m98t3ua9] {
        color: #000;
    }
/* /Components/Components/StarRating.razor.rz.scp.css */
/* StarRating — estilos aislados del componente. Ver AIS-3470.
   El tamaño se controla con el parámetro Size (font-size); acá solo
   espaciado, interacción y line-height para que las estrellas no se corten. */

.star-rating[b-hvd8uqu7c2] {
    display: inline-flex;
    gap: .25rem;
    line-height: 1;
}

.star[b-hvd8uqu7c2] {
    user-select: none;
}

.star-rating--editable .star[b-hvd8uqu7c2] {
    transition: transform .08s ease-in-out;
    cursor: pointer;
}

.star-rating--editable .star:hover[b-hvd8uqu7c2] {
    transform: scale(1.1);
}
/* /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;
    }

    .nav-item[b-x9hrzip85e]  .nav-link .beta-badge {
        margin-left: .5rem;
        position: relative;
        top: -1px;
        padding: .3rem .65rem .15rem;
        border-radius: 12px;
        font-size: 12px;
        font-weight: 500;
        line-height: 1;
        color: white;
        background-color: #FF5E2C;
    }

    .nav-item[b-x9hrzip85e]  a.active .beta-badge {
        background-color: #2D343F;
    }

/* /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%;
    /* Cierra la cadena de contención horizontal: .main-content ya trae min-width:0, pero sin esto
       el contenido ancho (una tabla del asistente) podía empujar el ancho del área de chat y, con
       él, el de toda la página. */
    min-width: 0;
    overflow-x: hidden;
}

/* Contenido del chat (messages/suggestions) */
.chat-content[b-ayxxwt2t0j] {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 0;
    min-width: 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;
}

/* Custom Send Button */
.chat-send-btn[b-ayxxwt2t0j] {
    background-color: #2c3e50;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.9rem 1.8rem;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 65px;
    box-shadow: 0 2px 4px rgba(13, 110, 253, 0.2);
}

 .chat-send-btn:hover:not(:disabled)[b-ayxxwt2t0j] {
     background-color: #34495e;
     transform: translateY(-1px);
     box-shadow: 0 4px 8px rgba(13, 110, 253, 0.3);
 }

.chat-send-btn:active:not(:disabled)[b-ayxxwt2t0j] {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(13, 110, 253, 0.2);
}

.chat-send-btn:disabled[b-ayxxwt2t0j] {
    background-color: #6c757d;
    cursor: not-allowed;
    opacity: 0.65;
    box-shadow: none;
}

.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;
}

/* 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;
}


/* 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/MensajeriaOrden/MessagingPage.razor.rz.scp.css */
.messaging-page-container[b-6rou95ex3b] {
    display: flex;
    flex-direction: column;
    height: calc(108vh - 400px);
    max-height: calc(108vh - 400px);
}

.messaging-page-header[b-6rou95ex3b] {
    flex-shrink: 0;
    margin-left: 20px;
    margin-right: 20px;
    background-color: white;
    z-index: 10;
}

.messaging-page-content[b-6rou95ex3b] {
    flex: 1;
    overflow: hidden;
    min-height: 0;
    position: relative;
    display: flex;
    flex-direction: column;
}

.search-bar-container[b-6rou95ex3b] {
    margin-top: 16px;
    margin-bottom: 16px;
}
/* /Components/Pages/GestionPages/OrdenesPages/OrdenDetails/SintesisTrazabilidad/MensajeriaOrden/Tabs/FilesTab.razor.rz.scp.css */

.chip[b-qgj82aghg7] {
    background: #f3f4f6;
    border: 1px solid var(--card-b);
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
}

.chip.active[b-qgj82aghg7] {
    background: #0f172a;
    color: #fff;
    border-color: #0f172a;
}

.main-content[b-qgj82aghg7] {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.chat-area[b-qgj82aghg7] {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 8px;
    height: 100%;
    overflow: hidden;
}

.chat-content[b-qgj82aghg7] {
    flex-grow: 1;
    padding: 1rem 1rem 0 1rem;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
}
.suggestions-container[b-qgj82aghg7] {
    text-align: center;
    padding: 2rem;
    color: #6c757d;
    font-size: 0.9rem;
    margin: auto;
}


.file-list-container[b-qgj82aghg7] {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 1);
    min-height: 0;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
}

.messages-container[b-qgj82aghg7] {
    flex-grow: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
}


.file-item[b-qgj82aghg7] {
    display: grid;
    grid-template-columns: 44px 1.2fr 1fr 2fr 40px;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid #f1f5f9;
    transition: background-color 0.2s;
    gap: 20px;
}

    .file-item:last-child[b-qgj82aghg7] {
        border-bottom: none;
    }

    .file-item:hover[b-qgj82aghg7] {
        background-color: #fcfcfc;
    }

.file-name[b-qgj82aghg7] {
    font-weight: 500;
    color: #475569;
    font-size: 15px;
    text-align: left;
}

.file-meta[b-qgj82aghg7] {
    color: #64748b;
    font-size: 14px;
    white-space: nowrap;
    text-align: left;
}

.file-sender[b-qgj82aghg7] {
    color: #64748b;
    font-size: 14px;
    text-align: left;
}

.menu-btn[b-qgj82aghg7] {
    padding: 8px;
    border-radius: 50%;
    color: #94a3b8;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}

    .menu-btn:hover[b-qgj82aghg7] {
        background-color: #f1f5f9;
        color: #475569;
    }


@media (max-width: 768px) {
    .file-item[b-qgj82aghg7] {
        grid-template-columns: auto 1fr auto;
        gap: 12px;
        padding: 12px 16px;
    }

    .file-sender[b-qgj82aghg7] {
        display: none;
    }
}

.message-highlight[b-qgj82aghg7] {
    background-color: #ffeaa7 !important;
    box-shadow: 0 0 15px rgba(253, 203, 110, 0.5) !important;
}
/* /Components/Pages/GestionPages/OrdenesPages/OrdenDetails/SintesisTrazabilidad/MensajeriaOrden/Tabs/InternalChannelTab.razor.rz.scp.css */
.main-content[b-6zbrs6ka7d] {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.chat-area[b-6zbrs6ka7d] {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 8px;
    height: 100%;
    overflow: hidden;
}

.chat-content[b-6zbrs6ka7d] {
    flex-grow: 1;
    padding: 1rem 1rem 0 1rem;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
}

.suggestions-container[b-6zbrs6ka7d] {
    text-align: center;
    padding: 2rem;
    color: #6c757d;
    font-size: 0.9rem;
    margin: auto;
}

.chat-input-section[b-6zbrs6ka7d] {
    padding: 1rem;
    background-color: #fff;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    flex-shrink: 0;
    position: sticky;
    bottom: 0;
    z-index: 10;
}

.chat-input-container[b-6zbrs6ka7d] {
    flex-grow: 1;
    position: relative;
}

.chat-input[b-6zbrs6ka7d] {
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 10px 15px;
    font-size: 0.95rem;
    resize: none;
    transition: border-color 0.2s;
    max-height: 120px;
    overflow-y: auto;
}

    .chat-input:focus[b-6zbrs6ka7d] {
        outline: none;
        border-color: #007bff;
        box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
    }

    .chat-input:disabled[b-6zbrs6ka7d] {
        background-color: #f8f9fa;
    }

.chat-button-container[b-6zbrs6ka7d] {
    margin-left: 1rem;
}

/* Custom Send Button */
.chat-send-message-btn[b-6zbrs6ka7d] {
    background-color: #2c3e50;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.8rem 1.8rem;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 2px 4px rgba(13, 110, 253, 0.2);
}

    .chat-send-message-btn:hover:not(:disabled)[b-6zbrs6ka7d] {
        background-color: #34495e;
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(13, 110, 253, 0.3);
    }

    .chat-send-message-btn:active:not(:disabled)[b-6zbrs6ka7d] {
        transform: translateY(0);
        box-shadow: 0 2px 4px rgba(13, 110, 253, 0.2);
    }

    .chat-send-message-btn:disabled[b-6zbrs6ka7d] {
        background-color: #6c757d;
        cursor: not-allowed;
        opacity: 0.65;
        box-shadow: none;
    }

/* Estilos para el botón de enviar con texto */
.chat-button-container button[b-6zbrs6ka7d] {
    background-color: #007bff;
    color: white;
    border-radius: 20px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    white-space: nowrap;
}

    .chat-button-container button:hover:not(:disabled)[b-6zbrs6ka7d] {
        background-color: #0056b3;
    }

    .chat-button-container button:disabled[b-6zbrs6ka7d] {
        background-color: #a0c7ff;
        cursor: not-allowed;
    }

color: #2c3e50;
background-color: #f8f9fa;
transform: scale(1.1);[b-6zbrs6ka7d]
}

.sidebar-title[b-6zbrs6ka7d] {
    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-6zbrs6ka7d] {
    opacity: 0;
    width: 0;
    overflow: hidden;
}

/* New Chat Button */
.new-chat-btn[b-6zbrs6ka7d] {
    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-6zbrs6ka7d] {
        background-color: #34495e;
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }

.collapsed .new-chat-btn[b-6zbrs6ka7d] {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 8px;
    gap: 0;
}

    .collapsed .new-chat-btn span[b-6zbrs6ka7d] {
        opacity: 0;
        width: 0;
        transition: opacity 0.2s ease-out, width 0.2s ease-out;
    }

.expanded .new-chat-btn span[b-6zbrs6ka7d] {
    opacity: 1;
    width: auto;
    transition: opacity 0.3s ease-in 0.1s, width 0.3s ease-in 0.1s;
}

/* Suggestions Layout */
.suggestions-container[b-6zbrs6ka7d] {
    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-6zbrs6ka7d] {
    display: flex;
    justify-content: center;
    gap: 1rem;
    width: 100%;
}

.suggestion-chip[b-6zbrs6ka7d] {
    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-6zbrs6ka7d] {
        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-6zbrs6ka7d] {
    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-6zbrs6ka7d] {
    margin-left: 1rem;
}


/* Chat Info Container */
.chat-info-container[b-6zbrs6ka7d] {
    position: absolute;
    bottom: -1.5rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Processing Message */
.processing-message[b-6zbrs6ka7d] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.spinning-icon[b-6zbrs6ka7d] {
    animation: spin-b-6zbrs6ka7d 1s linear infinite;
}

@keyframes spin-b-6zbrs6ka7d {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Character Counter */
.char-counter[b-6zbrs6ka7d] {
    font-size: 0.75rem;
    color: #adb5bd;
}

/* Scroll personalizado para suggestions-container */
.suggestions-container[b-6zbrs6ka7d]::-webkit-scrollbar {
    width: 6px;
}

.suggestions-container[b-6zbrs6ka7d]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.suggestions-container[b-6zbrs6ka7d]::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

    .suggestions-container[b-6zbrs6ka7d]::-webkit-scrollbar-thumb:hover {
        background: #a1a1a1;
    }


/* Responsive main content based on sidebar state */
.sidebar.expanded ~ .main-content[b-6zbrs6ka7d] {
    /* Flexbox se encargará automáticamente del espacio restante después del 30% del sidebar */
}

/* Help Button Styles */
.help-button-container[b-6zbrs6ka7d] {
    position: sticky;
    top: 1rem;
    margin-right: 20px;
    z-index: 100;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 0 1rem;
    pointer-events: none;
}

.help-button[b-6zbrs6ka7d] {
    background-color: #000000;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
}

    .help-button:hover[b-6zbrs6ka7d] {
        background-color: #333333;
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    }

    .help-button:active[b-6zbrs6ka7d] {
        transform: scale(0.98);
    }

    .help-button img[b-6zbrs6ka7d] {
        width: 24px;
        height: 24px;
        filter: brightness(0) invert(1);
    }

.help-message-popup[b-6zbrs6ka7d] {
    position: absolute;
    top: 55px;
    right: 0;
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1rem;
    max-width: 320px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 0.9rem;
    color: #495057;
    line-height: 1.5;
    z-index: 101;
    pointer-events: all;
    animation: fadeIn-b-6zbrs6ka7d 0.2s ease-in;
}

    .help-message-popup[b-6zbrs6ka7d]::before {
        content: '';
        position: absolute;
        top: -8px;
        right: 15px;
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 8px solid #e0e0e0;
    }

    .help-message-popup[b-6zbrs6ka7d]::after {
        content: '';
        position: absolute;
        top: -7px;
        right: 16px;
        width: 0;
        height: 0;
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-bottom: 7px solid white;
    }

@keyframes fadeIn-b-6zbrs6ka7d {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sidebar.collapsed ~ .main-content[b-6zbrs6ka7d] {
    /* Flexbox se encargará automáticamente del espacio restante después del 60px del sidebar */
}
/* /Components/Pages/GestionPages/OrdenesPages/OrdenDetails/SintesisTrazabilidad/MensajeriaOrden/Tabs/SharedChannelTab.razor.rz.scp.css */
.main-content[b-5v34iicbo4] {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.chat-area[b-5v34iicbo4] {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 8px;
    height: 100%;
    overflow: hidden;
}

.chat-content[b-5v34iicbo4] {
    flex-grow: 1;
    padding: 1rem 1rem 0 1rem;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
}

.suggestions-container[b-5v34iicbo4] {
    text-align: center;
    padding: 2rem;
    color: #6c757d;
    font-size: 0.9rem;
    margin: auto;
}

.chat-input-section[b-5v34iicbo4] {
    padding: 1rem;
    background-color: #fff;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    flex-shrink: 0;
    position: sticky;
    bottom: 0;
    z-index: 10;
}

.chat-input-container[b-5v34iicbo4] {
    flex-grow: 1;
    position: relative;
}

.chat-input[b-5v34iicbo4] {
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 10px 15px;
    font-size: 0.95rem;
    resize: none;
    transition: border-color 0.2s;
    max-height: 120px;
    overflow-y: auto;
}

    .chat-input:focus[b-5v34iicbo4] {
        outline: none;
        border-color: #007bff;
        box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
    }

    .chat-input:disabled[b-5v34iicbo4] {
        background-color: #f8f9fa;
    }

.chat-button-container[b-5v34iicbo4] {
    margin-left: 1rem;
}

/* Custom Send Button */
.chat-send-message-btn[b-5v34iicbo4] {
    background-color: #2c3e50;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.8rem 1.8rem;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 2px 4px rgba(13, 110, 253, 0.2);
}

    .chat-send-message-btn:hover:not(:disabled)[b-5v34iicbo4] {
        background-color: #34495e;
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(13, 110, 253, 0.3);
    }

    .chat-send-message-btn:active:not(:disabled)[b-5v34iicbo4] {
        transform: translateY(0);
        box-shadow: 0 2px 4px rgba(13, 110, 253, 0.2);
    }

    .chat-send-message-btn:disabled[b-5v34iicbo4] {
        background-color: #6c757d;
        cursor: not-allowed;
        opacity: 0.65;
        box-shadow: none;
    }

/* Estilos para el botón de enviar con texto */
.chat-button-container button[b-5v34iicbo4] {
    background-color: #007bff;
    color: white;
    border-radius: 20px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    white-space: nowrap;
}

    .chat-button-container button:hover:not(:disabled)[b-5v34iicbo4] {
        background-color: #0056b3;
    }

    .chat-button-container button:disabled[b-5v34iicbo4] {
        background-color: #a0c7ff;
        cursor: not-allowed;
    }
        color: #2c3e50;
        background-color: #f8f9fa;
        transform: scale(1.1);[b-5v34iicbo4]
    }

.sidebar-title[b-5v34iicbo4] {
    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-5v34iicbo4] {
    opacity: 0;
    width: 0;
    overflow: hidden;
}

/* New Chat Button */
.new-chat-btn[b-5v34iicbo4] {
    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-5v34iicbo4] {
        background-color: #34495e;
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }

.collapsed .new-chat-btn[b-5v34iicbo4] {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 8px;
    gap: 0;
}

    .collapsed .new-chat-btn span[b-5v34iicbo4] {
        opacity: 0;
        width: 0;
        transition: opacity 0.2s ease-out, width 0.2s ease-out;
    }

    .expanded .new-chat-btn span[b-5v34iicbo4] {
    opacity: 1;
    width: auto;
    transition: opacity 0.3s ease-in 0.1s, width 0.3s ease-in 0.1s;
}

/* Suggestions Layout */
.suggestions-container[b-5v34iicbo4] {
    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-5v34iicbo4] {
    display: flex;
    justify-content: center;
    gap: 1rem;
    width: 100%;
}

.suggestion-chip[b-5v34iicbo4] {
    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-5v34iicbo4] {
        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-5v34iicbo4] {
    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-5v34iicbo4] {
    margin-left: 1rem;
}


/* Chat Info Container */
.chat-info-container[b-5v34iicbo4] {
    position: absolute;
    bottom: -1.5rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Processing Message */
.processing-message[b-5v34iicbo4] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.spinning-icon[b-5v34iicbo4] {
    animation: spin-b-5v34iicbo4 1s linear infinite;
}

@keyframes spin-b-5v34iicbo4 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Character Counter */
.char-counter[b-5v34iicbo4] {
    font-size: 0.75rem;
    color: #adb5bd;
}

/* Scroll personalizado para suggestions-container */
.suggestions-container[b-5v34iicbo4]::-webkit-scrollbar {
    width: 6px;
}

.suggestions-container[b-5v34iicbo4]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.suggestions-container[b-5v34iicbo4]::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

    .suggestions-container[b-5v34iicbo4]::-webkit-scrollbar-thumb:hover {
        background: #a1a1a1;
    }


/* Responsive main content based on sidebar state */
.sidebar.expanded ~ .main-content[b-5v34iicbo4] {
    /* Flexbox se encargará automáticamente del espacio restante después del 30% del sidebar */
}

/* Help Button Styles */
.help-button-container[b-5v34iicbo4] {
    position: sticky;
    top: 1rem;
    margin-right: 20px;
    z-index: 100;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 0 1rem;
    pointer-events: none;
}

.help-button[b-5v34iicbo4] {
    background-color: #000000;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
}

    .help-button:hover[b-5v34iicbo4] {
        background-color: #333333;
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    }

    .help-button:active[b-5v34iicbo4] {
        transform: scale(0.98);
    }

    .help-button img[b-5v34iicbo4] {
        width: 24px;
        height: 24px;
        filter: brightness(0) invert(1);
    }

.help-message-popup[b-5v34iicbo4] {
    position: absolute;
    top: 55px;
    right: 0;
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1rem;
    max-width: 320px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 0.9rem;
    color: #495057;
    line-height: 1.5;
    z-index: 101;
    pointer-events: all;
    animation: fadeIn-b-5v34iicbo4 0.2s ease-in;
}

    .help-message-popup[b-5v34iicbo4]::before {
        content: '';
        position: absolute;
        top: -8px;
        right: 15px;
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 8px solid #e0e0e0;
    }

    .help-message-popup[b-5v34iicbo4]::after {
        content: '';
        position: absolute;
        top: -7px;
        right: 16px;
        width: 0;
        height: 0;
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-bottom: 7px solid white;
    }

@keyframes fadeIn-b-5v34iicbo4 {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sidebar.collapsed ~ .main-content[b-5v34iicbo4] {
    /* 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;
    height: 28px;
    overflow: visible;
    margin-bottom: 60px;
}

    ul.progress-steps[b-mhmpo5j0dt]::before,
    ul.progress-steps-many[b-mhmpo5j0dt]::before {
        content: "";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        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] {
    position: relative;
}

.step-marker-disabled[b-mhmpo5j0dt] {
    background-color: #8C9199;
    border: 2px solid #8C9199;
}

.step-text-disabled[b-mhmpo5j0dt] {
    color: #d3d3d3;
}

.btn-marker[b-mhmpo5j0dt] {
    flex-shrink: 0;
    padding: 0;
    height: 28px;
    width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-marker .step-marker[b-mhmpo5j0dt] {
    margin: 0;
}

.btn-marker[disabled][b-mhmpo5j0dt] {
    pointer-events: none;
    opacity: 0.6;
}

.pointer-click[b-mhmpo5j0dt] {
    cursor: pointer;
}

.trazabilidad-text[b-mhmpo5j0dt] {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 14px;
    max-width: 120px;
    margin-top: 4px;
    white-space: normal;
}

.step-label-active[b-mhmpo5j0dt] {
    font-size: 15px !important;
}

ul.progress-steps-many .trazabilidad-text[b-mhmpo5j0dt] {
    max-width: 90px;
}

.trazabilidad-text.pointer-click[b-mhmpo5j0dt] {
    display: inline-block;
    cursor: pointer;
}

.trazabilidad-container[b-mhmpo5j0dt] {
    background-color: #fff;
    border-radius: 8px;
    padding: 1rem;
    max-height: calc(108vh - 400px);
    overflow-y: auto;
    overflow-x: hidden;
}
/* /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/MessagingPage/Components/ProveedorChatMessaging.razor.rz.scp.css */
.chat-container[b-ail1g6j6m5] {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 1);
    min-height: 0;
    overflow: hidden;
}

.messages-container[b-ail1g6j6m5] {
    flex-grow: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
}

.message-wrapper[b-ail1g6j6m5] {
    display: flex;
    margin-bottom: 24px;
    width: 100%;
    align-items: flex-start;
    /* Align icons to the bottom of the message group */
}

.user-message[b-ail1g6j6m5] {
    justify-content: flex-end;
}

.other-message[b-ail1g6j6m5] {
    justify-content: flex-start;
}

.message-content-wrapper[b-ail1g6j6m5] {
    display: flex;
    flex-direction: column;
    max-width: 75%;
}

.user-message .message-content-wrapper[b-ail1g6j6m5] {
    align-items: flex-end;
}

.other-message .message-content-wrapper[b-ail1g6j6m5] {
    align-items: flex-start;
}

.message-bubble[b-ail1g6j6m5] {
    padding: 16px 20px;
    border-radius: 12px;
    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;
}

.color-mining[b-ail1g6j6m5] {
    background-color: rgba(246, 247, 250, 1);
}

.color-vendor[b-ail1g6j6m5] {
    background-color: rgba(255, 247, 244, 1)
}

.user-bubble[b-ail1g6j6m5] {
    border-top-right-radius: 4px;
}

.other-bubble[b-ail1g6j6m5] {
    border-top-left-radius: 4px;
}

/* Icons */
.message-icon[b-ail1g6j6m5] {
    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-ail1g6j6m5] {
    background-color: rgba(45, 52, 63, 1);
    /* Dark color */
    margin-right: 12px;
    margin-top: 23px;
}

.user-initials[b-ail1g6j6m5] {
    color: white;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    user-select: none;
}

.other-icon[b-ail1g6j6m5] {
    background-color: rgba(255, 94, 44, 1);
    /* Orange color */
    margin-right: 12px;
    margin-top: 23px;
}

.message-icon img[b-ail1g6j6m5] {
    width: 20px;
    height: 20px;
}

/* Typography */
.message-time-top[b-ail1g6j6m5] {
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 4px;
    font-weight: 500;
}

.message-time-bottom[b-ail1g6j6m5] {
    font-size: 14px;
    margin-top: 8px;
    display: block;
    color: #6c757d;
}

/* Typing Indicator */
.typing-indicator[b-ail1g6j6m5] {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 0;
}

.typing-dot[b-ail1g6j6m5] {
    width: 8px;
    height: 8px;
    background-color: #000000;
    border-radius: 50%;
    animation: typing-b-ail1g6j6m5 1.4s infinite ease-in-out both;
}

    .typing-dot:nth-child(1)[b-ail1g6j6m5] {
        animation-delay: -0.32s;
    }

    .typing-dot:nth-child(2)[b-ail1g6j6m5] {
        animation-delay: -0.16s;
    }

@keyframes typing-b-ail1g6j6m5 {

    0%, 80%, 100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

.empty-chat[b-ail1g6j6m5] {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
}

/* Message Footer */
.message-footer[b-ail1g6j6m5] {
    padding-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-link-row[b-ail1g6j6m5] {
    font-size: 13px;
    font-weight: 500;
}

.footer-link[b-ail1g6j6m5] {
    color: #343a40;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

    .footer-link:hover[b-ail1g6j6m5] {
        color: #252a2e;
        text-decoration: underline;
    }

    .footer-link svg[b-ail1g6j6m5] {
        margin-top: -1px;
    }

.footer-actions[b-ail1g6j6m5] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.action-btn[b-ail1g6j6m5] {
    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-ail1g6j6m5] {
        background-color: #f1f3f5;
    }

    .action-btn img[b-ail1g6j6m5] {
        width: 18px;
        height: 18px;
        opacity: 0.6;
        transition: opacity 0.2s;
    }

    .action-btn:hover img[b-ail1g6j6m5] {
        opacity: 0.8;
    }

    .action-btn:active img[b-ail1g6j6m5] {
        opacity: 1;
    }

.white-icon[b-ail1g6j6m5] {
    filter: brightness(0) invert(1);
}

.action-btn-wrapper[b-ail1g6j6m5] {
    position: relative;
    display: inline-block;
}

    .action-btn-wrapper .tooltip-bottom[b-ail1g6j6m5] {
        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-ail1g6j6m5] {
        visibility: visible;
        opacity: 1;
    }


.file-message-area[b-ail1g6j6m5] {
    display: flex;
    padding-top: 8px;
    flex-wrap: wrap;
    gap: 10px;
    border-bottom: 1px solid #f1f5f9;
    max-height: 180px;
    overflow-y: auto;
}

.file-card[b-ail1g6j6m5] {
    border: 1px solid #edf2f7;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 1);
    border-radius: 6px;
    padding: 8px 10px;
    width: 328px;
}


.file-details[b-ail1g6j6m5] {
    flex: 1;
}

.file-name[b-ail1g6j6m5] {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}

.truncate-text[b-ail1g6j6m5] {
    max-width: 200px;
}

.file-info-text[b-ail1g6j6m5] {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Search Highlights */
[b-ail1g6j6m5] .search-highlight {
    background-color: #FFB7004D;
}

[b-ail1g6j6m5] .search-highlight-active {
    background-color: #FFB700;
    font-weight: 400;
    scroll-margin-top: 20px;
}

.message-highlight[b-ail1g6j6m5] {
    background-color: #ffeaa7 !important;
    box-shadow: 0 0 15px rgba(253, 203, 110, 0.5) !important;
}
/* /Components/Pages/ProveedorPages/Ordenes/MessagingPage/Components/ProveedorChatSearchBar.razor.rz.scp.css */
.chat-search-bar[b-l30sn8w6e4] {
    background: transparent;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 10;
}

.search-input-wrapper[b-l30sn8w6e4] {
    display: flex;
    align-items: center;
    background: transparent;
    border-bottom: 1px solid #e5e7eb;
    padding: 8px 0;
    gap: 12px;
}

.search-icon[b-l30sn8w6e4] {
    color: #6b7280;
    font-size: 16px;
    flex-shrink: 0;
}

.search-clear-icon[b-l30sn8w6e4] {
    background: transparent;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
}

.search-clear-icon:hover[b-l30sn8w6e4] {
    color: #1f2937;
}

.search-clear-icon i[b-l30sn8w6e4] {
    font-size: 14px;
}

.search-input[b-l30sn8w6e4] {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    color: #1f2937;
    padding: 0;
}

.search-input[b-l30sn8w6e4]::placeholder {
    color: #9ca3af;
}

.search-controls[b-l30sn8w6e4] {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.search-counter[b-l30sn8w6e4] {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
    min-width: 45px;
    text-align: center;
}

.search-nav-btn[b-l30sn8w6e4] {
    background: transparent;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.search-nav-btn:hover:not(:disabled)[b-l30sn8w6e4] {
    background: #f3f4f6;
    color: #1f2937;
}

.search-nav-btn:disabled[b-l30sn8w6e4] {
    opacity: 0.3;
    cursor: not-allowed;
}

.search-nav-btn i[b-l30sn8w6e4] {
    font-size: 14px;
}
/* /Components/Pages/ProveedorPages/Ordenes/MessagingPage/ProveedorMessaging.razor.rz.scp.css */
.messaging-page-container[b-y45154s4ze] {
    display: flex;
    flex-direction: column;
    height: calc(108vh - 400px);
    max-height: calc(108vh - 400px);
}

.messaging-page-header[b-y45154s4ze] {
    flex-shrink: 0;
    margin-left: 20px;
    margin-right: 20px;
    background-color: white;
    z-index: 10;
}

.messaging-page-content[b-y45154s4ze] {
    flex: 1;
    overflow: hidden;
    min-height: 0;
    position: relative;
    display: flex;
    flex-direction: column;
}

.search-bar-container[b-y45154s4ze] {
    margin-top: 16px;
    margin-bottom: 16px;
}
/* /Components/Pages/ProveedorPages/Ordenes/MessagingPage/Tabs/ProveedorFilesTab.razor.rz.scp.css */

.chip[b-2ahd6rr9uf] {
    background: #f3f4f6;
    border: 1px solid var(--card-b);
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .chip.active[b-2ahd6rr9uf] {
        background: #0f172a;
        color: #fff;
        border-color: #0f172a;
    }

    .chip:hover:not(.active)[b-2ahd6rr9uf] {
        background: #e5e7eb;
        border-color: #9ca3af;
    }

.channel-selector[b-2ahd6rr9uf] {
    display: flex;
    gap: 12px;
    padding: 0 1rem;
    flex-wrap: wrap;
}

.main-content[b-2ahd6rr9uf] {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.chat-area[b-2ahd6rr9uf] {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 8px;
    height: 100%;
    overflow: hidden;
}

.chat-content[b-2ahd6rr9uf] {
    flex-grow: 1;
    padding: 1rem 1rem 0 1rem;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
}

.suggestions-container[b-2ahd6rr9uf] {
    text-align: center;
    padding: 2rem;
    color: #6c757d;
    font-size: 0.9rem;
    margin: auto;
}


.file-list-container[b-2ahd6rr9uf] {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 1);
    min-height: 0;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
}

.messages-container[b-2ahd6rr9uf] {
    flex-grow: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
}


.file-item[b-2ahd6rr9uf] {
    display: grid;
    grid-template-columns: 44px 1.2fr 1fr 2fr 40px;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid #f1f5f9;
    transition: background-color 0.2s;
    gap: 20px;
}

    .file-item:last-child[b-2ahd6rr9uf] {
        border-bottom: none;
    }

    .file-item:hover[b-2ahd6rr9uf] {
        background-color: #fcfcfc;
    }

.file-name[b-2ahd6rr9uf] {
    font-weight: 500;
    color: #475569;
    font-size: 15px;
    text-align: left;
}

.file-meta[b-2ahd6rr9uf] {
    color: #64748b;
    font-size: 14px;
    white-space: nowrap;
    text-align: left;
}

.file-sender[b-2ahd6rr9uf] {
    color: #64748b;
    font-size: 14px;
    text-align: left;
}

.menu-btn[b-2ahd6rr9uf] {
    padding: 8px;
    border-radius: 50%;
    color: #94a3b8;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}

    .menu-btn:hover[b-2ahd6rr9uf] {
        background-color: #f1f5f9;
        color: #475569;
    }


@media (max-width: 768px) {
    .file-item[b-2ahd6rr9uf] {
        grid-template-columns: auto 1fr auto;
        gap: 12px;
        padding: 12px 16px;
    }

    .file-sender[b-2ahd6rr9uf] {
        display: none;
    }
}


.message-highlight[b-2ahd6rr9uf] {
    background-color: #ffeaa7 !important;
    box-shadow: 0 0 15px rgba(253, 203, 110, 0.5) !important;
}
/* /Components/Pages/ProveedorPages/Ordenes/MessagingPage/Tabs/ProveedorInternalChannelTab.razor.rz.scp.css */
.main-content[b-58zt377drd] {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.chat-area[b-58zt377drd] {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 8px;
    height: 100%;
    overflow: hidden;
}

.chat-content[b-58zt377drd] {
    flex-grow: 1;
    padding: 1rem 1rem 0 1rem;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
}

.suggestions-container[b-58zt377drd] {
    text-align: center;
    padding: 2rem;
    color: #6c757d;
    font-size: 0.9rem;
    margin: auto;
}

.chat-input-section[b-58zt377drd] {
    padding: 1rem;
    background-color: #fff;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    flex-shrink: 0;
    position: sticky;
    bottom: 0;
    z-index: 10;
}

.chat-input-container[b-58zt377drd] {
    flex-grow: 1;
    position: relative;
}

.chat-input[b-58zt377drd] {
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 10px 15px;
    font-size: 0.95rem;
    resize: none;
    transition: border-color 0.2s;
    max-height: 120px;
    overflow-y: auto;
}

    .chat-input:focus[b-58zt377drd] {
        outline: none;
        border-color: #007bff;
        box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
    }

    .chat-input:disabled[b-58zt377drd] {
        background-color: #f8f9fa;
    }


/* Estilos para el botón de enviar con texto */
.chat-button-container button[b-58zt377drd] {
    background-color: #007bff;
    color: white;
    border-radius: 20px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    white-space: nowrap;
}

    .chat-button-container button:hover:not(:disabled)[b-58zt377drd] {
        background-color: #0056b3;
    }

    .chat-button-container button:disabled[b-58zt377drd] {
        background-color: #a0c7ff;
        cursor: not-allowed;
    }
        color: #2c3e50;
        background-color: #f8f9fa;
        transform: scale(1.1);[b-58zt377drd]
    }

.sidebar-title[b-58zt377drd] {
    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-58zt377drd] {
    opacity: 0;
    width: 0;
    overflow: hidden;
}

/* New Chat Button */
.new-chat-btn[b-58zt377drd] {
    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-58zt377drd] {
        background-color: #34495e;
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }

.collapsed .new-chat-btn[b-58zt377drd] {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 8px;
    gap: 0;
}

    .collapsed .new-chat-btn span[b-58zt377drd] {
        opacity: 0;
        width: 0;
        transition: opacity 0.2s ease-out, width 0.2s ease-out;
    }

    .expanded .new-chat-btn span[b-58zt377drd] {
    opacity: 1;
    width: auto;
    transition: opacity 0.3s ease-in 0.1s, width 0.3s ease-in 0.1s;
}

/* Suggestions Layout */
.suggestions-container[b-58zt377drd] {
    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-58zt377drd] {
    display: flex;
    justify-content: center;
    gap: 1rem;
    width: 100%;
}

.suggestion-chip[b-58zt377drd] {
    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-58zt377drd] {
        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-58zt377drd] {
    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-58zt377drd] {
    margin-left: 1rem;
}

    /* Custom Send Button */
    .chat-send-message-btn[b-58zt377drd] {
        background-color: #2c3e50;
        color: white;
        border: none;
        border-radius: 8px;
        padding: 0.8rem 1.8rem;
        font-size: 1.1rem;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.2s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        box-shadow: 0 2px 4px rgba(13, 110, 253, 0.2);
    }

    .chat-send-message-btn:hover:not(:disabled)[b-58zt377drd] {
        background-color: #34495e;
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(13, 110, 253, 0.3);
    }

    .chat-send-message-btn:active:not(:disabled)[b-58zt377drd] {
        transform: translateY(0);
        box-shadow: 0 2px 4px rgba(13, 110, 253, 0.2);
    }

    .chat-send-message-btn:disabled[b-58zt377drd] {
        background-color: #6c757d;
        cursor: not-allowed;
        opacity: 0.65;
        box-shadow: none;
    }

.chat-input[b-58zt377drd] {
    flex-grow: 1;
    border: none;
    outline: none;
    padding: 0.75rem;
    font-size: 0.95rem;
    color: #2c3e50;
}



/* Chat Info Container */
.chat-info-container[b-58zt377drd] {
    position: absolute;
    bottom: -1.5rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Processing Message */
.processing-message[b-58zt377drd] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.spinning-icon[b-58zt377drd] {
    animation: spin-b-58zt377drd 1s linear infinite;
}

@keyframes spin-b-58zt377drd {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Character Counter */
.char-counter[b-58zt377drd] {
    font-size: 0.75rem;
    color: #adb5bd;
}

/* Scroll personalizado para suggestions-container */
.suggestions-container[b-58zt377drd]::-webkit-scrollbar {
    width: 6px;
}

.suggestions-container[b-58zt377drd]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.suggestions-container[b-58zt377drd]::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

    .suggestions-container[b-58zt377drd]::-webkit-scrollbar-thumb:hover {
        background: #a1a1a1;
    }


/* Responsive main content based on sidebar state */
.sidebar.expanded ~ .main-content[b-58zt377drd] {
    /* Flexbox se encargará automáticamente del espacio restante después del 30% del sidebar */
}

/* Help Button Styles */
.help-button-container[b-58zt377drd] {
    position: sticky;
    top: 1rem;
    margin-right: 20px;
    z-index: 100;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 0 1rem;
    pointer-events: none;
}

.help-button[b-58zt377drd] {
    background-color: #000000;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
}

    .help-button:hover[b-58zt377drd] {
        background-color: #333333;
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    }

    .help-button:active[b-58zt377drd] {
        transform: scale(0.98);
    }

    .help-button img[b-58zt377drd] {
        width: 24px;
        height: 24px;
        filter: brightness(0) invert(1);
    }

.help-message-popup[b-58zt377drd] {
    position: absolute;
    top: 55px;
    right: 0;
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1rem;
    max-width: 320px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 0.9rem;
    color: #495057;
    line-height: 1.5;
    z-index: 101;
    pointer-events: all;
    animation: fadeIn-b-58zt377drd 0.2s ease-in;
}

    .help-message-popup[b-58zt377drd]::before {
        content: '';
        position: absolute;
        top: -8px;
        right: 15px;
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 8px solid #e0e0e0;
    }

    .help-message-popup[b-58zt377drd]::after {
        content: '';
        position: absolute;
        top: -7px;
        right: 16px;
        width: 0;
        height: 0;
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-bottom: 7px solid white;
    }

@keyframes fadeIn-b-58zt377drd {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sidebar.collapsed ~ .main-content[b-58zt377drd] {
    /* Flexbox se encargará automáticamente del espacio restante después del 60px del sidebar */
}
/* /Components/Pages/ProveedorPages/Ordenes/MessagingPage/Tabs/ProveedorSharedChannelTab.razor.rz.scp.css */
.main-content[b-lodatvks13] {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.chat-area[b-lodatvks13] {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 8px;
    height: 100%;
    overflow: hidden;
}

.chat-content[b-lodatvks13] {
    flex-grow: 1;
    padding: 1rem 1rem 0 1rem;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
}

.suggestions-container[b-lodatvks13] {
    text-align: center;
    padding: 2rem;
    color: #6c757d;
    font-size: 0.9rem;
    margin: auto;
}

.chat-input-section[b-lodatvks13] {
    padding: 1rem;
    background-color: #fff;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    flex-shrink: 0;
    position: sticky;
    bottom: 0;
    z-index: 10;
}

.chat-input-container[b-lodatvks13] {
    flex-grow: 1;
    position: relative;
}

.chat-input[b-lodatvks13] {
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 10px 15px;
    font-size: 0.95rem;
    resize: none;
    transition: border-color 0.2s;
    max-height: 120px;
    overflow-y: auto;
}

    .chat-input:focus[b-lodatvks13] {
        outline: none;
        border-color: #007bff;
        box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
    }

    .chat-input:disabled[b-lodatvks13] {
        background-color: #f8f9fa;
    }


/* Estilos para el botón de enviar con texto */
.chat-button-container button[b-lodatvks13] {
    background-color: #007bff;
    color: white;
    border-radius: 20px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    white-space: nowrap;
}

    .chat-button-container button:hover:not(:disabled)[b-lodatvks13] {
        background-color: #0056b3;
    }

    .chat-button-container button:disabled[b-lodatvks13] {
        background-color: #a0c7ff;
        cursor: not-allowed;
    }
        color: #2c3e50;
        background-color: #f8f9fa;
        transform: scale(1.1);[b-lodatvks13]
    }

.sidebar-title[b-lodatvks13] {
    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-lodatvks13] {
    opacity: 0;
    width: 0;
    overflow: hidden;
}

/* New Chat Button */
.new-chat-btn[b-lodatvks13] {
    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-lodatvks13] {
        background-color: #34495e;
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }

.collapsed .new-chat-btn[b-lodatvks13] {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 8px;
    gap: 0;
}

    .collapsed .new-chat-btn span[b-lodatvks13] {
        opacity: 0;
        width: 0;
        transition: opacity 0.2s ease-out, width 0.2s ease-out;
    }

    .expanded .new-chat-btn span[b-lodatvks13] {
    opacity: 1;
    width: auto;
    transition: opacity 0.3s ease-in 0.1s, width 0.3s ease-in 0.1s;
}

/* Suggestions Layout */
.suggestions-container[b-lodatvks13] {
    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-lodatvks13] {
    display: flex;
    justify-content: center;
    gap: 1rem;
    width: 100%;
}

.suggestion-chip[b-lodatvks13] {
    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-lodatvks13] {
        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-lodatvks13] {
    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-lodatvks13] {
    margin-left: 1rem;
}

    /* Custom Send Button */
    .chat-send-message-btn[b-lodatvks13] {
        background-color: #2c3e50;
        color: white;
        border: none;
        border-radius: 8px;
        padding: 0.8rem 1.8rem;
        font-size: 1.1rem;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.2s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        box-shadow: 0 2px 4px rgba(13, 110, 253, 0.2);
    }

    .chat-send-message-btn:hover:not(:disabled)[b-lodatvks13] {
        background-color: #34495e;
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(13, 110, 253, 0.3);
    }

    .chat-send-message-btn:active:not(:disabled)[b-lodatvks13] {
        transform: translateY(0);
        box-shadow: 0 2px 4px rgba(13, 110, 253, 0.2);
    }

    .chat-send-message-btn:disabled[b-lodatvks13] {
        background-color: #6c757d;
        cursor: not-allowed;
        opacity: 0.65;
        box-shadow: none;
    }

.chat-input[b-lodatvks13] {
    flex-grow: 1;
    border: none;
    outline: none;
    padding: 0.75rem;
    font-size: 0.95rem;
    color: #2c3e50;
}



/* Chat Info Container */
.chat-info-container[b-lodatvks13] {
    position: absolute;
    bottom: -1.5rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Processing Message */
.processing-message[b-lodatvks13] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.spinning-icon[b-lodatvks13] {
    animation: spin-b-lodatvks13 1s linear infinite;
}

@keyframes spin-b-lodatvks13 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Character Counter */
.char-counter[b-lodatvks13] {
    font-size: 0.75rem;
    color: #adb5bd;
}

/* Scroll personalizado para suggestions-container */
.suggestions-container[b-lodatvks13]::-webkit-scrollbar {
    width: 6px;
}

.suggestions-container[b-lodatvks13]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.suggestions-container[b-lodatvks13]::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

    .suggestions-container[b-lodatvks13]::-webkit-scrollbar-thumb:hover {
        background: #a1a1a1;
    }


/* Responsive main content based on sidebar state */
.sidebar.expanded ~ .main-content[b-lodatvks13] {
    /* Flexbox se encargará automáticamente del espacio restante después del 30% del sidebar */
}

/* Help Button Styles */
.help-button-container[b-lodatvks13] {
    position: sticky;
    top: 1rem;
    margin-right: 20px;
    z-index: 100;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 0 1rem;
    pointer-events: none;
}

.help-button[b-lodatvks13] {
    background-color: #000000;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
}

    .help-button:hover[b-lodatvks13] {
        background-color: #333333;
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    }

    .help-button:active[b-lodatvks13] {
        transform: scale(0.98);
    }

    .help-button img[b-lodatvks13] {
        width: 24px;
        height: 24px;
        filter: brightness(0) invert(1);
    }

.help-message-popup[b-lodatvks13] {
    position: absolute;
    top: 55px;
    right: 0;
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1rem;
    max-width: 320px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 0.9rem;
    color: #495057;
    line-height: 1.5;
    z-index: 101;
    pointer-events: all;
    animation: fadeIn-b-lodatvks13 0.2s ease-in;
}

    .help-message-popup[b-lodatvks13]::before {
        content: '';
        position: absolute;
        top: -8px;
        right: 15px;
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 8px solid #e0e0e0;
    }

    .help-message-popup[b-lodatvks13]::after {
        content: '';
        position: absolute;
        top: -7px;
        right: 16px;
        width: 0;
        height: 0;
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-bottom: 7px solid white;
    }

@keyframes fadeIn-b-lodatvks13 {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sidebar.collapsed ~ .main-content[b-lodatvks13] {
    /* Flexbox se encargará automáticamente del espacio restante después del 60px del sidebar */
}
/* /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;
    height: 28px;
    overflow: visible;
    margin-bottom: 60px;
}

    ul.progress-steps[b-mvrr90uicg]::before,
    ul.progress-steps-many[b-mvrr90uicg]::before {
        content: "";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        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] {
    position: relative;
}

.step-marker-disabled[b-mvrr90uicg] {
    background-color: #8C9199;
    border: 2px solid #8C9199;
}

.step-text-disabled[b-mvrr90uicg] {
    color: #d3d3d3;
}

.btn-marker[b-mvrr90uicg] {
    flex-shrink: 0;
    padding: 0;
    height: 28px;
    width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-marker .step-marker[b-mvrr90uicg] {
    margin: 0;
}

.btn-marker[disabled][b-mvrr90uicg] {
    pointer-events: none;
    opacity: 0.6;
}

.pointer-click[b-mvrr90uicg] {
    cursor: pointer;
}

.trazabilidad-text[b-mvrr90uicg] {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 14px;
    max-width: 120px;
    margin-top: 4px;
    white-space: normal;
}

.step-label-active[b-mvrr90uicg] {
    font-size: 15px !important;
}

ul.progress-steps-many .trazabilidad-text[b-mvrr90uicg] {
    max-width: 110px;
}

.trazabilidad-text.pointer-click[b-mvrr90uicg] {
    display: inline-block;
    cursor: pointer;
}

.trazabilidad-container[b-mvrr90uicg] {
    background-color: #fff;
    border-radius: 8px;
    padding: 1rem;
    max-height: calc(108vh - 400px);
    overflow-y: auto;
    overflow-x: hidden;
}
/* /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%;
    }
}
