@import '_content/Blazored.Toast/Blazored.Toast.bundle.scp.css';

/* /Features/Auth/Pages/AccessDenied.razor.rz.scp.css */
.access-denied-container[b-s0grdk0q7x] {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.access-denied-icon[b-s0grdk0q7x] {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px auto;
    border-radius: 50%;
    background: rgba(0, 95, 115, 0.12);
    color: #005F73;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.access-denied-card h1[b-s0grdk0q7x] {
    font-size: 28px;
    font-weight: 700;
    color: #003B4E;
    margin-bottom: 12px;
}

.access-denied-card p[b-s0grdk0q7x] {
    font-size: 16px;
    color: #5f6b73;
    margin-bottom: 28px;
}

.btn-back-home[b-s0grdk0q7x] {
    border: none;
    background: #005F73;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

    .btn-back-home:hover[b-s0grdk0q7x] {
        background: #003B4E;
    }
/* /Features/Auth/Pages/AuthBootstrapper.razor.rz.scp.css */
.initial-loading-screen[b-cptxsmy7q0] {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    min-height: 100vh;
    width: 100%;
    background: radial-gradient(ellipse at 85% 55%, rgba(0, 220, 220, 0.18) 0%, transparent 60%), linear-gradient(-45deg, var(--cor-primaria-clara) 0%, var(--cor-primaria-escura) 60%);
    font-family: 'DM Sans', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #ffffff;
    font-size: 0.9rem;
    flex-direction: column;
    gap: 1rem;
    overflow: hidden;
    position: relative;
}

.initial-loading-spinner[b-cptxsmy7q0] {
    width: 36px;
    height: 36px;
    border: 3px solid rgba(1, 191, 223, 0.22);
    border-top-color: var(--cor-azul-neon);
    border-radius: 50%;
    animation: spin-b-cptxsmy7q0 0.7s linear infinite;
}

.initial-loading-message[b-cptxsmy7q0] {
    min-height: 22px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    font-weight: 400;
    text-align: center;
    transition: opacity 0.25s ease;
}

.access-error-screen[b-cptxsmy7q0] {
    background: radial-gradient(ellipse at 85% 55%, rgba(220, 38, 38, 0.18) 0%, transparent 60%), linear-gradient(-45deg, #7f1d1d 0%, #2b0b0b 60%);
}

.access-error-icon[b-cptxsmy7q0] {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 3px solid rgba(248, 113, 113, 0.35);
    color: #f87171;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    font-weight: 700;
}

.access-error-message[b-cptxsmy7q0] {
    color: rgba(254, 226, 226, 0.9);
}

.access-error-button[b-cptxsmy7q0] {
    margin-top: 0.5rem;
    border: 1px solid rgba(248, 113, 113, 0.45);
    border-radius: 0.75rem;
    background-color: rgba(248, 113, 113, 0.12);
    color: #fee2e2;
    padding: 0.55rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

    .access-error-button:hover[b-cptxsmy7q0] {
        background-color: rgba(248, 113, 113, 0.22);
        border-color: #f87171;
        color: #ffffff;
    }

@keyframes spin-b-cptxsmy7q0 {
    to {
        transform: rotate(360deg);
    }
}
/* /Features/Auth/Pages/AuthLoadingScreen.razor.rz.scp.css */
/* ============================================================
   AuthLoadingScreen — tela de transição do fluxo MSAL
   Mesmo visual do loading inicial do index.html
   ============================================================ */

.auth-loading-screen[b-p8jgxtbol7] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    height: 100vh;
    width: 100%;
    background: radial-gradient( ellipse at 85% 55%, rgba(0, 220, 220, 0.18) 0%, transparent 60% ), linear-gradient( -45deg, var(--cor-primaria-clara) 0%, var(--cor-primaria-escura) 60% );
    font-family: 'DM Sans', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    -webkit-font-smoothing: antialiased;
    position: relative;
    overflow: hidden;
}

.auth-loading-content[b-p8jgxtbol7] {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

/* Spinner igual ao index.html */
.auth-spinner[b-p8jgxtbol7] {
    width: 36px;
    height: 36px;
    border: 3px solid rgba(1, 191, 223, 0.22);
    border-top-color: var(--cor-azul-neon);
    border-radius: 50%;
    animation: auth-spin-b-p8jgxtbol7 0.7s linear infinite;
}

@keyframes auth-spin-b-p8jgxtbol7 {
    to {
        transform: rotate(360deg);
    }
}

/* Mensagem */
.auth-message[b-p8jgxtbol7] {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    font-weight: 400;
    text-align: center;
    margin: 0;
}

/* Estados opcionais */
.auth-message-error[b-p8jgxtbol7] {
    color: #fecaca;
}

.auth-message-success[b-p8jgxtbol7] {
    color: var(--cor-azul-neon);
}

/* Ícones de erro/sucesso */
.auth-status-icon[b-p8jgxtbol7] {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cor-azul-neon);
}

    .auth-status-icon svg[b-p8jgxtbol7] {
        width: 42px;
        height: 42px;
    }

/* Link de voltar em caso de erro */
.auth-retry-link[b-p8jgxtbol7] {
    margin-top: 0.25rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

    .auth-retry-link:hover[b-p8jgxtbol7] {
        color: var(--cor-azul-neon);
        text-decoration: none;
    }
/* /Features/ImportCenter/Components/FileImportDropzone.razor.rz.scp.css */
.import-card[b-5s7gknpsnm] {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    width: 50%;
    box-shadow: 0 8px 24px rgba(0, 32, 96, 0.08);
}

    .import-card h3[b-5s7gknpsnm] {
        margin: 0;
        font-size: 16px;
        color: var(--gp-background-light);
        font-weight: var(--font-weight-semibold);
    }

    .import-card p[b-5s7gknpsnm] {
        margin: 6px 0 14px;
        color: #6b7280;
        font-size: 13px;
    }

.template-button[b-5s7gknpsnm] {
    margin-top: 1rem;
    margin-bottom: -1rem;
}

.instruction-card[b-5s7gknpsnm] {
    background: var(--background-blue-light);
    border-radius: 12px;
    padding: 20px;
    width: 50%;
    box-shadow: 0 8px 24px rgba(0, 32, 96, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.instruction-title[b-5s7gknpsnm] {
    display: flex;
    color: var(--gp-background-light);
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

    .instruction-title h3[b-5s7gknpsnm] {
        margin: 0;
        padding: 0;
        font-size: var(--font-size-title-cards);
        color: var(--gp-background-light);
        font-weight: var(--font-weight-semibold);
    }

.instructions[b-5s7gknpsnm] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: .3rem;
    font-size: var(--font-size-description-cards);
    color: var(--gp-background-light);
}

.requiredFields-button[b-5s7gknpsnm] {
    margin-bottom: -1rem;
}

.dropzone[b-5s7gknpsnm] {
    position: relative;
    border: 2px dashed var(--gp-background-light);
    background: var(--background-blue-light);
    border-radius: 12px;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: 0.2s ease;
    text-align: center;
}

    .dropzone:hover[b-5s7gknpsnm],
    .dropzone.dragging[b-5s7gknpsnm] {
        background: #eaf4ff;
        border-color: var(--gp-background-dark);
    }

.upload-icon[b-5s7gknpsnm] {
    font-size: 32px;
}

.dropzone strong[b-5s7gknpsnm] {
    color: var(--gp-sidebar-light);
    font-size: 14px;
}

.dropzone span[b-5s7gknpsnm] {
    color: #6b7280;
    font-size: 13px;
}

.dropzone small[b-5s7gknpsnm] {
    margin-top: 8px;
    color: #7b8aa0;
    font-size: 12px;
}

.file-input[b-5s7gknpsnm] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}


.file-selected[b-5s7gknpsnm] {
    margin-top: 12px;
    color: #173b7a;
    font-size: 13px;
}

.error[b-5s7gknpsnm] {
    margin-top: 12px;
    color: #dc2626;
    font-size: 13px;
}
/* /Features/ImportCenter/Pages/ImportCenterIndex.razor.rz.scp.css */
.ValueColumnList[b-skgzsiujin] {
    padding: .2rem;
    font-size: var(--font-size-description-cards);
}
/* /Features/PostLaunch/Components/SmartAnalysis.razor.rz.scp.css */
.ia-symbol[b-qv8y7h0sgn] {
    background-color: var(--gp-primary);
    color: white;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.8rem;
    border-radius: 10px;
}

.info-title[b-qv8y7h0sgn] {
    background-color: var(--gp-primary);
    width: 5rem;
    height: 18px;
    color: white;
    font-size: var(--font-size-small-cards);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-subtitle[b-qv8y7h0sgn] {
    font-size: var(--font-size-subtitle-cards);
    color: var(--color-subtitles);
}

.time-att[b-qv8y7h0sgn] {
    font-size: var(--font-size-description-cards);
}


.info-ia[b-qv8y7h0sgn] {
    border-radius: 10px;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
    gap: 10px;
}

[b-qv8y7h0sgn] .info-ia i {
    font-size: 1rem;
    margin-top: 4px;
    margin-right: .4rem;
    margin-left: .4rem;
}

.info-ia.green[b-qv8y7h0sgn] {
    background-color: #F0FDF4;
    border: 1px solid rgba(22, 163, 74, 0.2);
}

    .info-ia.green i[b-qv8y7h0sgn] {
        color: rgba(22, 163, 74);
    }

.info-ia.orange[b-qv8y7h0sgn] {
    background-color: rgb(255, 251, 235);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

    .info-ia.orange i[b-qv8y7h0sgn] {
        color: rgba(245, 158, 11);
    }

.info-ia.blue[b-qv8y7h0sgn] {
    background-color: rgb(239, 246, 255);
    border: 1px solid rgba(37, 99, 235, 0.2);
}

    .info-ia.blue i[b-qv8y7h0sgn] {
        color: rgba(37, 99, 235);
    }

.info-ia.purple[b-qv8y7h0sgn] {
    background-color: rgb(245, 243, 255);
    border: 1px solid rgba(124, 58, 237, 0.2);
}

    .info-ia.purple i[b-qv8y7h0sgn] {
        color: rgba(124, 58, 237);
    }

.ia-text[b-qv8y7h0sgn] {
    font-size: var(--font-size-description-cards);
    padding-right: 0.8rem;
    text-align: justify;
}   

.time-att[b-qv8y7h0sgn] {
    font-size: var(--font-size-description-cards);
    color: rgb(0,0,0,0.4);
}

    .time-att span[b-qv8y7h0sgn] {
        font-style: italic;
    }

.footer[b-qv8y7h0sgn] {
    border-top: 1px solid rgb(0,0,0, 0.05);
    margin-top: .5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: .5rem;
}

    .footer label[b-qv8y7h0sgn] {
        font-size: var(--font-size-subtitle-cards);
        color: rgb(0,0,0,0.4);
        font-style: italic;
    }
.footer-button[b-qv8y7h0sgn] {

    width: 14%; 

}
/* /Features/PostLaunch/Pages/PostLaunchAccuracy.razor.rz.scp.css */
.info-title[b-8aoymua30p] {
    background-color: var(--gp-primary);
    width: 5rem;
    height: 18px;
    color: white;
    font-size: var(--font-size-small-cards);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-subtitle[b-8aoymua30p] {
    font-size: var(--font-size-subtitle-cards);
    color: var(--color-subtitles);
}

.time-att[b-8aoymua30p] {
    font-size: var(--font-size-description-cards);
}

.project-tag[b-8aoymua30p] {
    font-size: 14px;
    padding: 6px 12px;
    border: 1px solid var(--gp-primary);
    border-radius: 30px;
    background-color: rgb(0, 145, 171, 0.1);
    color: var(--cor-primaria-escura);
}

/* =========================
   CARDS EM 1 LINHA
   ========================= */

.accuracy-cards-row[b-8aoymua30p] {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0.50rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    box-sizing: border-box;
    scrollbar-width: thin;
}

    .accuracy-cards-row > .card-gp[b-8aoymua30p] {
        flex: 1 1 0;
        min-width: 145px;
        min-height: 145px;
    }

/* =========================
   CARDS EM GRID
   ========================= */

.accuracy-cards-grid[b-8aoymua30p] {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
    width: 100%;
    max-width: 100%;
    align-items: stretch;
    box-sizing: border-box;
}

    .accuracy-cards-grid > .card-gp[b-8aoymua30p] {
        min-width: 0;
        min-height: 145px;
        margin-top: -.5rem;
    }

/* =========================
   CABEÇALHO DO CARD
   ========================= */

.header-card-info[b-8aoymua30p] {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    gap: 0.5rem;
}

    .header-card-info .info-name[b-8aoymua30p] {
        min-width: 0;
        padding-right: 3.3rem;
        font-size: var(--font-size-subtitle-cards);
        font-weight: var(--font-weight-semibold);
        line-height: 1.2;
        overflow-wrap: anywhere;
    }

    .header-card-info.info-expand .info-name[b-8aoymua30p] {
        padding-right: 5rem;
    }

/* =========================
   VALORES
   ========================= */

.value-now[b-8aoymua30p] {
    display: block;
    width: 100%;
    min-width: 0;
    font-size: var(--font-size-title-cards);
    font-weight: var(--font-weight-semibold);
    border-bottom: 0.5px solid var(--color-black-transparent);
    padding-bottom: 0.4rem;
    margin-bottom: 0.4rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.values-ol[b-8aoymua30p] {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    min-height: 24px;
    padding-right: 4rem;
}

.ol[b-8aoymua30p] {
    opacity: 0.7;
}

.ol[b-8aoymua30p],
.value-ol[b-8aoymua30p] {
    font-size: var(--font-size-small-cards);
}

.value-ol[b-8aoymua30p] {
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* =========================
   VARIAÇÃO
   ========================= */

.info-appreciation[b-8aoymua30p] {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: 0;
    padding: 3px 5px;
    border: 1px solid var(--color-status-success);
    border-radius: 5px;
    color: var(--color-status-success);
    font-size: var(--font-size-small-cards);
    line-height: 1.1;
    white-space: nowrap;
}

.warning-info[b-8aoymua30p] {
    border-color: var(--color-status-red);
    color: var(--color-status-red);
}

/* =========================
   ÍCONE DE EXPANSÃO
   ========================= */

.expand-icon[b-8aoymua30p] {
    position: absolute;
    top: 20px;
    right: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    font-size: 18px;
    color: #6c757d;
    cursor: pointer;
    border: 0;
    background: transparent;
    transition: color 0.15s ease, transform 0.15s ease;
}

    .expand-icon:hover[b-8aoymua30p] {
        color: #343a40;
        transform: scale(1.08);
    }

    .expand-icon:focus-visible[b-8aoymua30p] {
        outline: 2px solid var(--gp-primary);
        outline-offset: 2px;
        border-radius: 4px;
    }

/* =========================
   TIPO DO INDICADOR
   ========================= */

.indicator-type[b-8aoymua30p] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
    font-size: var(--font-size-small-cards);
}

    .indicator-type .media[b-8aoymua30p] {
        width: auto;
        min-width: 3.2rem;
        padding: 2px 5px;
        border-radius: 6px;
        background-color: rgb(239, 246, 255);
        color: rgb(37, 99, 235);
        text-align: center;
        line-height: 1.3;
        white-space: nowrap;
    }

    .indicator-type .soma[b-8aoymua30p] {
        width: auto;
        min-width: 3.2rem;
        padding: 2px 5px;
        border-radius: 6px;
        background-color: rgb(240, 253, 244);
        color: rgb(22, 163, 74);
        text-align: center;
        line-height: 1.3;
        white-space: nowrap;
    }

.media.legend[b-8aoymua30p],
.soma.legend[b-8aoymua30p] {
    position: absolute;
    top: 0;
    right: 0;
}

.legend.cost[b-8aoymua30p] {
    right: 2rem;
}

/* =========================
   LEGENDA
   ========================= */

.indicator-legend[b-8aoymua30p] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    width: 100%;
    margin-top: 1rem;
}

    .indicator-legend .indicator-type[b-8aoymua30p] {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

        .indicator-legend .indicator-type > label:last-child[b-8aoymua30p] {
            color: var(--color-subtitles);
            line-height: 1.4;
        }

/* =========================
   CONTAINER PRINCIPAL
   ========================= */

.post-launch-accuracy[b-8aoymua30p] {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    margin-bottom: 1.5rem;
}

/* =========================
   TELAS MENORES
   ========================= */

@media (max-width: 1400px) {
    .accuracy-cards-row > .card-gp[b-8aoymua30p] {
        flex: 0 0 165px;
    }
}

@media (max-width: 768px) {
    .accuracy-cards-row[b-8aoymua30p] {
        gap: 0.5rem;
    }

        .accuracy-cards-row > .card-gp[b-8aoymua30p] {
            flex: 0 0 160px;
            min-width: 160px;
        }

    .indicator-legend[b-8aoymua30p] {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* /Features/PostLaunch/Pages/PostLaunchIndex.razor.rz.scp.css */
.primary-color[b-su1fnhvo7w] {
    color: var(--gp-primary);
}
/* /Features/PostLaunch/Pages/PostLaunchScenarioAnalysis.razor.rz.scp.css */
.versions-title[b-0206o5i6ur] {
    font-weight: var(--font-weight-bold);
    color: var(--gp-primary);
}

.versions-options p[b-0206o5i6ur] {
    font-size: var(--font-size-description-cards);
}

.sa-graphs[b-0206o5i6ur] {
}

.graphs-filters[b-0206o5i6ur] {
    gap: 1rem;
}

.graphs-content[b-0206o5i6ur],
.sa-dre[b-0206o5i6ur] {
    width: 100%;
    gap: 1rem;
}

.graphs-content[b-0206o5i6ur] {
    display: flex;
    min-height: 20rem;
}

.graphs-title[b-0206o5i6ur] {
    font-weight: var(--font-weight-bold);
    color: var(--gp-primary);
}

.title-select-options[b-0206o5i6ur] {
    font-size: var(--font-size-description-cards);
    font-weight: var(--font-weight-normal);
}

.sa-dre[b-0206o5i6ur]  .thead-light th.empty,
.sa-dre[b-0206o5i6ur]  .thead-light th.text-real,
.sa-dre[b-0206o5i6ur]  .thead-light th.text-versao1,
.sa-dre[b-0206o5i6ur]  .thead-light th.text-versao2,
.sa-dre[b-0206o5i6ur]  td.text-real,
.sa-dre[b-0206o5i6ur]  td.text-versao1,
.sa-dre[b-0206o5i6ur]  td.text-versao2 {
    background-color: white;
    height: 1.8rem !important;
}

.sa-dre[b-0206o5i6ur]  .thead-light th.text-real,
.sa-dre[b-0206o5i6ur]  .thead-light th.text-versao1,
.sa-dre[b-0206o5i6ur]  .thead-light th.text-versao2,
.sa-dre[b-0206o5i6ur]  td.text-real,
.sa-dre[b-0206o5i6ur]  td.text-versao1,
.sa-dre[b-0206o5i6ur]  td.text-versao2 {
    font-size: var(--font-size-subtitle-cards);
    height: 2.5rem;
    padding: .5rem;
    font-weight: var(--font-weight-normal);
    vertical-align: middle;
    text-align: center;
}

.sa-dre[b-0206o5i6ur]  td.text-rubrica {
    font-size: var(--font-size-subtitle-cards);
    font-weight: var(--font-weight-normal);
    vertical-align: middle;
}

.sa-dre[b-0206o5i6ur]  .text-real span {
    color: var(--color-status-info);
}

.sa-dre[b-0206o5i6ur]  .text-versao1 span {
    color: var(--color-status-success);
}

.sa-dre[b-0206o5i6ur]  .text-versao2 span {
    color: var(--color-status-warning);
}

.sa-dre[b-0206o5i6ur]  table thead tr:nth-child(2) th:nth-child(2),
.sa-dre[b-0206o5i6ur]  table thead tr:nth-child(2) th:nth-child(4),
.sa-dre[b-0206o5i6ur]  table thead tr:nth-child(2) th:nth-child(6) {
    border-left: 1px solid var(--gp-tables-color);
}

.sa-dre[b-0206o5i6ur]  table thead tr:nth-child(2) th:nth-child(3),
.sa-dre[b-0206o5i6ur]  table thead tr:nth-child(2) th:nth-child(5) {
    border-right: 1px solid var(--gp-tables-color);
}

.sa-dre[b-0206o5i6ur]  table tbody tr td:nth-child(2),
.sa-dre[b-0206o5i6ur]  table tbody tr td:nth-child(4),
.sa-dre[b-0206o5i6ur]  table tbody tr td:nth-child(6) {
    border-left: 1px solid var(--gp-tables-color);
}

.sa-dre[b-0206o5i6ur]  table tbody tr td:nth-child(3),
.sa-dre[b-0206o5i6ur]  table tbody tr td:nth-child(5) {
    border-right: 1px solid var(--gp-tables-color);
}

.dre-show[b-0206o5i6ur] {
    margin-top: 1rem;
    margin-bottom: -1rem;
    display: flex;
    justify-content: space-between;
}

.show-title[b-0206o5i6ur] {
    font-weight: var(--font-weight-bold);
    color: var(--gp-primary);
    display: flex;
    align-items: end;
}

.dre-versions[b-0206o5i6ur] {
    display: flex;
    gap: 1rem;
}

.dre-header[b-0206o5i6ur] {
    display: flex;
    justify-content: space-between;
}

.dre-title[b-0206o5i6ur] {
    font-weight: var(--font-weight-bold);
    color: var(--gp-primary);
}

.dre-subtitle[b-0206o5i6ur] {
    margin-top: -1rem;
    font-size: var(--font-size-subtitle-cards)
}

.dre-legend[b-0206o5i6ur] {
    display: flex;
    gap: 1rem;
    height: 1rem;
    font-size: var(--font-size-subtitle-cards)
}

.dre-versions[b-0206o5i6ur] {
    display: flex;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
}

    .dre-versions > .card-gp[b-0206o5i6ur] {
        flex: 1 1 0;
        width: 0;
        min-width: 0;
        max-width: 100%;
        overflow: hidden;
        box-shadow: 0 0px 8px rgb(0 32 96 / 8%);
    }

.sa-dre[b-0206o5i6ur] {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
}

.ranking-header[b-0206o5i6ur] {
    display: flex;
    justify-content: space-between;
}

.ranking-title[b-0206o5i6ur] {
    font-weight: var(--font-weight-bold);
    color: var(--gp-primary);
}

.ranking-subtitle[b-0206o5i6ur] {
    margin-top: -1rem;
    font-size: var(--font-size-subtitle-cards)
}

.ranking-legend[b-0206o5i6ur] {
    display: flex;
    gap: 1rem;
    height: 1rem;
    font-size: var(--font-size-subtitle-cards)
}

.sa-ranking[b-0206o5i6ur]  .text-real span {
    color: var(--color-status-info);
}

.sa-ranking[b-0206o5i6ur]  .text-versao1 span {
    color: var(--color-status-success);
}

.sa-ranking[b-0206o5i6ur]  .text-versao2 span {
    color: var(--color-status-warning);
}

.sa-ranking[b-0206o5i6ur]  td {
    padding-left: 0.6rem;
    font-size: var(--font-size-subtitle-cards);
    font-weight: var(--font-weight-normal);
}

    .sa-ranking[b-0206o5i6ur]  td.ranking-adherence-cell {
        min-width: 6rem;
        vertical-align: middle;
    }

.sa-ranking[b-0206o5i6ur]  .ranking-adherence {
    display: flex;
    align-items: center;
}

.sa-ranking[b-0206o5i6ur]  .ranking-adherence-track {
    flex: 1;
    height: .5rem;
    background-color: var(--gp-tables-color);
    border-radius: 999px;
    overflow: hidden;
}

.sa-ranking[b-0206o5i6ur]  .ranking-adherence-fill {
    height: 100%;
    background-color: var(--color-status-success);
    border-radius: 999px;
}

.sa-ranking[b-0206o5i6ur]  .ranking-adherence-value {
    min-width: 2.5rem;
    color: var(--color-status-success);
    font-weight: var(--font-weight-normal);
    text-align: right;
}

.heading-rubric[b-0206o5i6ur] {
    gap: 1rem;
    margin-top: 1rem;
    padding-left: 1.26rem;
    margin-bottom: -1rem;
    align-items: center;
}
/* /Features/ProfilesAccess/Pages/ProfileAccessUsers.razor.rz.scp.css */
.search-wrapper[b-5gazx5nll4] {
    width: min(440px, 100%);
    flex: 0 0 auto;
}

.card.permissions[b-5gazx5nll4] {
    margin-bottom: 2rem;
}


.card-body[b-5gazx5nll4] {
    padding: 0;
}

.systemRole[b-5gazx5nll4] {
    border-radius: 1.2rem;
    background-color: var(--section-icon-bg, rgba(1, 191, 223, 0.063));
    color: var(--section-icon-color, #01BFDF);
    font-weight: var(--font-weight-bold);
}

/* /Features/ProfilesAccess/Pages/ProfileAccessUsersAddEdit.razor.rz.scp.css */
.user-options-backdrop[b-k43h1dtwjq] {
    position: fixed;
    inset: 0;
    z-index: 1050;
    background: rgba(0, 0, 0, 0.15);
}

.user-options-modal[b-k43h1dtwjq] {
    position: absolute;
    top: 72px;
    right: 24px;
    width: 280px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
    padding: 12px;
    animation: userOptionsFadeIn-b-k43h1dtwjq 0.15s ease-out;
}

.user-options-header[b-k43h1dtwjq] {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    padding: 8px;
}

    .user-options-header strong[b-k43h1dtwjq] {
        display: block;
        font-size: 0.95rem;
        color: #111827;
    }

    .user-options-header small[b-k43h1dtwjq] {
        display: block;
        font-size: 0.8rem;
        color: #6b7280;
    }

.user-options-avatar[b-k43h1dtwjq] {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(1, 191, 223, 0.19);
    background-color: rgba(1, 191, 223, 0.063);
    color: #01BFDF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    font-weight: 700;
}

.user-options-close[b-k43h1dtwjq] {
    margin-left: auto;
    border: none;
    background: transparent;
    font-size: 1.4rem;
    line-height: 1;
    color: #6b7280;
    cursor: pointer;
}

    .user-options-close:hover[b-k43h1dtwjq] {
        color: #111827;
    }

.user-options-divider[b-k43h1dtwjq] {
    height: 1px;
    background: #e5e7eb;
    margin: 8px 0;
}

.user-options-item[b-k43h1dtwjq] {
    width: 100%;
    border: none;
    background: transparent;
    padding: 10px 12px;
    text-align: left;
    border-radius: 10px;
    font-size: 0.9rem;
    color: #374151;
    cursor: pointer;
}

    .user-options-item:hover[b-k43h1dtwjq] {
        background: #f3f4f6;
        color: #111827;
    }

.user-options-logout[b-k43h1dtwjq] {
    color: #dc2626;
}

    .user-options-logout:hover[b-k43h1dtwjq] {
        background: #fee2e2;
        color: #b91c1c;
    }

.description-active[b-k43h1dtwjq] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.description-active label[b-k43h1dtwjq] {
    font-size: 12px;
}

@keyframes userOptionsFadeIn-b-k43h1dtwjq {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Layout/Components/NavMenuUserOptions.razor.rz.scp.css */
.user-options-backdrop[b-hfqfnrew0g] {
    position: fixed;
    inset: 0;
    z-index: 1050;
    background: rgba(0, 0, 0, 0.15);
}

.user-options-modal[b-hfqfnrew0g] {
    position: absolute;
    top: 72px;
    right: 24px;
    width: 280px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
    padding: 12px;
    animation: userOptionsFadeIn-b-hfqfnrew0g 0.15s ease-out;
}

.user-options-header[b-hfqfnrew0g] {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    padding: 8px;
}

    .user-options-header strong[b-hfqfnrew0g] {
        display: block;
        font-size: 0.95rem;
        color: #111827;
    }

    .user-options-header small[b-hfqfnrew0g] {
        display: block;
        font-size: 0.8rem;
        color: #6b7280;
    }

.user-options-avatar[b-hfqfnrew0g] {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(1, 191, 223, 0.19);
    background-color: rgba(1, 191, 223, 0.063);
    color: #01BFDF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    font-weight: 700;
}

.user-options-close[b-hfqfnrew0g] {
    margin-left: auto;
    border: none;
    background: transparent;
    font-size: 1.4rem;
    line-height: 1;
    color: #6b7280;
    cursor: pointer;
}

    .user-options-close:hover[b-hfqfnrew0g] {
        color: #111827;
    }

.user-options-divider[b-hfqfnrew0g] {
    height: 1px;
    background: #e5e7eb;
    margin: 8px 0;
}

.user-options-item[b-hfqfnrew0g] {
    width: 100%;
    border: none;
    background: transparent;
    padding: 10px 12px;
    text-align: left;
    border-radius: 10px;
    font-size: 0.9rem;
    color: #374151;
    cursor: pointer;
}

    .user-options-item:hover[b-hfqfnrew0g] {
        background: #f3f4f6;
        color: #111827;
    }

.user-options-logout[b-hfqfnrew0g] {
    color: #dc2626;
}

    .user-options-logout:hover[b-hfqfnrew0g] {
        background: #fee2e2;
        color: #b91c1c;
    }

@keyframes userOptionsFadeIn-b-hfqfnrew0g {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
:root[b-zucf91krvl] {
    --app-header-height: 0px;
}

/* =========================
   ESTRUTURA PRINCIPAL
   ========================= */

.page[b-zucf91krvl] {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 100vh;
    overflow-x: clip;
    box-sizing: border-box;
}

/* =========================
   CONTEÚDO PRINCIPAL
   ========================= */
main[b-zucf91krvl] {
    flex: 1 1 0;
    width: 0;
    min-width: 0;
    max-width: 100%;
    background-color: var(--background-main-layout);
    overflow-x: clip;
    box-sizing: border-box;
}

.background-layout[b-zucf91krvl] {
    width: auto;
    min-width: 0;
    max-width: none;
    /*
     * Precisa ser visible para permitir que elementos internos
     * compensem a margem m-4 e alcancem as bordas do main, como no FilterGroup.
     */
    overflow: visible;
    box-sizing: border-box;
}

    .background-layout > *[b-zucf91krvl] {
        min-width: 0;
        max-width: 100%;
        box-sizing: border-box;
    }

/* =========================
   SIDEBAR
   ========================= */

.sidebar[b-zucf91krvl] {
    flex: 0 0 auto;
    min-width: 0;
    overflow: hidden;
    background-image: linear-gradient( 180deg, var(--gp-sidebar-dark) 0%, var(--gp-sidebar-light) 70% );
    transition: width 0.2s ease;
    box-sizing: border-box;
}

.sidebar-expanded[b-zucf91krvl] {
    width: 16rem;
}

.sidebar-collapsed[b-zucf91krvl] {
    width: 4rem;
}

/* =========================
   HEADER PRINCIPAL
   ========================= */

.top-row[b-zucf91krvl] {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 4rem;
    background-color: var(--background-main-layout);
    border-bottom: 1px solid rgba(214, 213, 213, 0.6);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
    box-sizing: border-box;
}

    .top-row[data-app-header][b-zucf91krvl] {
        position: sticky;
        top: 0;
        z-index: 1030;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        background-color: var(--bs-body-bg, #ffffff);
        box-sizing: border-box;
    }

/* =========================
   CONTEÚDO DO HEADER
   ========================= */

.header-content[b-zucf91krvl] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.header-left[b-zucf91krvl] {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    width: 0;
    min-width: 0;
}

    .header-left h1[b-zucf91krvl] {
        margin: 0;
        color: var(--gp-primary);
        font-size: 1.125rem;
        font-weight: 700;
        line-height: 1.3;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .header-left label[b-zucf91krvl] {
        display: block;
        min-width: 0;
        margin: 0;
        margin-top: 0.125rem;
        color: #6b7280;
        font-size: 0.75rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.header-right[b-zucf91krvl] {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    min-width: 0;
    margin-left: auto;
}

/* =========================
   PESQUISA E NOTIFICAÇÕES
   ========================= */

.hr-pesquisa[b-zucf91krvl],
.hr-notificacoes[b-zucf91krvl] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

    .hr-pesquisa:hover[b-zucf91krvl],
    .hr-notificacoes:hover[b-zucf91krvl] {
        background-color: rgba(107, 114, 128, 0.1);
        border-radius: 40%;
    }

/* =========================
   STATUS DA IA
   ========================= */

.ai-status[b-zucf91krvl] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    border: 1px solid rgba(1, 191, 223, 0.2);
    border-radius: 999px;
    background-color: rgba(1, 191, 223, 0.05);
    color: #005f73;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
}

.ai-status-dot[b-zucf91krvl] {
    display: inline-block;
    flex-shrink: 0;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: #01bfdf;
}

/* =========================
   MENU DO USUÁRIO
   ========================= */

.user-menu-button[b-zucf91krvl] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.5rem;
    border: none;
    border-radius: 0.75rem;
    background-color: transparent;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

    .user-menu-button:hover[b-zucf91krvl] {
        background-color: rgba(107, 114, 128, 0.1);
    }

.user-avatar[b-zucf91krvl] {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border: 1px solid rgba(1, 191, 223, 0.19);
    border-radius: 50%;
    background-color: rgba(1, 191, 223, 0.063);
    color: #01bfdf;
    font-size: 0.625rem;
    font-weight: 700;
}

/* =========================
   LINKS DO HEADER
   ========================= */

.top-row[b-zucf91krvl]  a,
.top-row[b-zucf91krvl]  .btn-link {
    margin-left: 1.5rem;
    text-decoration: none;
    white-space: nowrap;
}

    .top-row[b-zucf91krvl]  a:hover,
    .top-row[b-zucf91krvl]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-zucf91krvl]  a:first-child {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
    }

/* =========================
   SCROLL HORIZONTAL LOCAL
   ========================= */

/*
 * Use esta classe em conteúdos que precisam de scroll próprio, para não alargar a página desnecessáriamente.
 */
.horizontal-scroll[b-zucf91krvl] {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scrollbar-width: thin;
    box-sizing: border-box;
}

/* =========================
   RESPONSIVIDADE
   ========================= */

@media (max-width: 640.98px) {
    .page[b-zucf91krvl] {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    main[b-zucf91krvl] {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .top-row[b-zucf91krvl] {
        min-height: 4rem;
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .header-content[b-zucf91krvl] {
        gap: 0.75rem;
    }

    .header-left label[b-zucf91krvl] {
        max-width: 180px;
    }

    .header-right[b-zucf91krvl] {
        gap: 0.375rem;
        margin-left: auto;
    }

    .ai-status[b-zucf91krvl] {
        display: none;
    }

    .top-row[b-zucf91krvl]  a,
    .top-row[b-zucf91krvl]  .btn-link {
        margin-left: 0;
    }

    .background-layout[b-zucf91krvl] {
        min-width: 0;
        overflow-x: clip;
    }
}

@media (min-width: 641px) {
    .page[b-zucf91krvl] {
        flex-direction: row;
        align-items: stretch;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow-x: clip;
    }

    .sidebar[b-zucf91krvl] {
        position: sticky;
        top: 0;
        align-self: flex-start;
        height: 100vh;
        max-height: 100vh;
        overflow: hidden;
        z-index: 1040;
    }

    main[b-zucf91krvl] {
        flex: 1 1 0;
        width: 0;
        max-width: 100%;
        min-width: 0;
        overflow-x: clip;
    }

    .top-row[b-zucf91krvl] {
        position: sticky;
        top: 0;
        z-index: 1030;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

        .top-row.auth[b-zucf91krvl]  a:first-child {
            flex: 1 1 auto;
            width: 0;
            min-width: 0;
            text-align: right;
        }
}
/* /Layout/NavMenu.razor.rz.scp.css */
/* =========================
   CONTAINER PRINCIPAL
   ========================= */

.nav-menu[b-d4ndgxa7rk] {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    box-sizing: border-box;
}

/* =========================
   HEADER DO MENU
   ========================= */

.top-row[b-d4ndgxa7rk] {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    width: 100%;
    min-width: 0;
    min-height: 4rem;
    background-color: transparent;
    border-bottom: 1px solid var(--cor-destaque-azul-claro);
    box-sizing: border-box;
}

.navbar-toggler[b-d4ndgxa7rk] {
    flex-shrink: 0;
    margin-left: auto;
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar-brand[b-d4ndgxa7rk] {
    font-size: 1.1rem;
}

/* =========================
   LOGO
   ========================= */

.logo[b-d4ndgxa7rk] {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    width: 100%;
    min-width: 0;
    padding: 10px;
    box-sizing: border-box;
}

.logo-icon[b-d4ndgxa7rk] {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
}

.logo-texto[b-d4ndgxa7rk] {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-width: 0;
}

.logo h3[b-d4ndgxa7rk] {
    margin: 0;
    color: white;
    font-family: var(--fonte-subtitulos);
    font-size: 0.78rem;
    font-weight: var(--font-weight-bold);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.logo label[b-d4ndgxa7rk] {
    margin: 0;
    color: var(--cor-azul-neon);
    filter: brightness(85%);
    font-family: var(--fonte-subtitulos);
    font-size: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.logo button[b-d4ndgxa7rk],
.logo .navbar-toggler[b-d4ndgxa7rk] {
    flex-shrink: 0;
    margin-left: auto;
}

/* =========================
   ÍCONE DO LOGO
   ========================= */

.icone[b-d4ndgxa7rk] {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-right: 3px;
    border-radius: 40%;
    background-color: var(--cor-azul-neon);
}

/* =========================
   ÁREA ROLÁVEL DO MENU
   ========================= */

.nav-scrollable[b-d4ndgxa7rk] {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    scrollbar-width: thin;
    box-sizing: border-box;
}

    .nav-scrollable nav[b-d4ndgxa7rk] {
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

/* =========================
   LINKS
   ========================= */

[b-d4ndgxa7rk] a,
[b-d4ndgxa7rk] a:hover,
[b-d4ndgxa7rk] a:focus,
[b-d4ndgxa7rk] a:active {
    text-decoration: none;
}

/* =========================
   ITEM DO MENU
   ========================= */

.nav-item[b-d4ndgxa7rk] {
    width: 100%;
    min-width: 0;
    font-family: var(--fonte-subtitulos);
    font-size: 0.9rem;
    font-weight: var(--font-weight-medium);
    text-decoration: none;
    box-sizing: border-box;
}

    .nav-item:last-of-type[b-d4ndgxa7rk] {
        padding-bottom: 1rem;
    }

    .nav-item[b-d4ndgxa7rk]  a,
    .nav-item[b-d4ndgxa7rk]  a.nav-link {
        display: flex;
        align-items: center;
        width: 100%;
        min-width: 0;
        min-height: 3rem;
        padding: 0;
        color: rgba(255, 255, 255, 0.72);
        line-height: normal;
        text-decoration: none;
        box-sizing: border-box;
    }

    .nav-item[b-d4ndgxa7rk]  .nav-link-content {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        width: 100%;
        min-width: 0;
        min-height: 3rem;
        padding: 0 0.75rem;
        border-left: 3px solid transparent;
        box-sizing: border-box;
        transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, padding-left 0.12s ease;
    }

    .nav-item[b-d4ndgxa7rk]  a:hover .nav-link-content,
    .nav-item[b-d4ndgxa7rk]  a.nav-link:hover .nav-link-content {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .nav-item[b-d4ndgxa7rk]  a:focus .nav-link-content,
    .nav-item[b-d4ndgxa7rk]  a.nav-link:focus .nav-link-content {
        padding-left: 0.95rem;
        border-left-color: var(--cor-azul-neon);
        background-color: rgba(255, 255, 255, 0.1);
        color: white;
    }

    .nav-item[b-d4ndgxa7rk]  a.active .nav-link-content,
    .nav-item[b-d4ndgxa7rk]  a.nav-link.active .nav-link-content {
        padding-left: 0.95rem;
        border-left-color: var(--cor-azul-neon);
        background-color: rgba(1, 191, 223, 0.18);
        color: white;
    }

/* =========================
   TEXTO DO MENU
   ========================= */

.nav-text[b-d4ndgxa7rk] {
    display: block;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* =========================
   ÍCONES DOS LINKS
   ========================= */

.nav-item[b-d4ndgxa7rk]  .nav-link-content svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.nav-item[b-d4ndgxa7rk]  a:hover .nav-link-content svg,
.nav-item[b-d4ndgxa7rk]  a.nav-link:hover .nav-link-content svg,
.nav-item[b-d4ndgxa7rk]  a.active .nav-link-content svg,
.nav-item[b-d4ndgxa7rk]  a.nav-link.active .nav-link-content svg {
    color: var(--cor-azul-neon);
}

/* =========================
   MENU RECOLHIDO
   ========================= */

.menu-fechado .logo[b-d4ndgxa7rk] {
    justify-content: center;
    margin-right: 0;
    padding: 10px 0;
}

.menu-fechado .nav-text[b-d4ndgxa7rk] {
    display: none;
}

.menu-fechado .nav-item[b-d4ndgxa7rk] {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

    .menu-fechado .nav-item[b-d4ndgxa7rk]  .nav-link-content {
        justify-content: center;
        gap: 0;
        padding: 0;
        border-left: 3px solid transparent;
    }

    .menu-fechado .nav-item[b-d4ndgxa7rk]  a:hover .nav-link-content,
    .menu-fechado .nav-item[b-d4ndgxa7rk]  a:focus .nav-link-content,
    .menu-fechado .nav-item[b-d4ndgxa7rk]  a.active .nav-link-content,
    .menu-fechado .nav-item[b-d4ndgxa7rk]  a.nav-link:hover .nav-link-content,
    .menu-fechado .nav-item[b-d4ndgxa7rk]  a.nav-link:focus .nav-link-content,
    .menu-fechado .nav-item[b-d4ndgxa7rk]  a.nav-link.active .nav-link-content {
        padding-left: 0;
    }

/* =========================
   MENU ABERTO
   ========================= */

.menu-aberto .nav-text[b-d4ndgxa7rk] {
    display: block;
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 640.98px) {
    .nav-menu[b-d4ndgxa7rk] {
        height: auto;
        min-height: 0;
    }

    .top-row[b-d4ndgxa7rk] {
        min-height: 4rem;
    }

    .logo[b-d4ndgxa7rk] {
        width: 100%;
    }

    .navbar-toggler[b-d4ndgxa7rk] {
        margin-left: auto;
    }

    .nav-scrollable[b-d4ndgxa7rk] {
        flex: 0 1 auto;
        max-height: calc(100vh - 4rem);
        overflow-y: auto;
    }

    .nav-item:first-of-type[b-d4ndgxa7rk] {
        padding-top: 0.75rem;
    }

    .nav-item:last-of-type[b-d4ndgxa7rk] {
        padding-bottom: 0.75rem;
    }

    .menu-fechado .nav-scrollable[b-d4ndgxa7rk] {
        display: none;
    }
}

@media (min-width: 641px) {
    .nav-menu[b-d4ndgxa7rk] {
        height: 100vh;
        max-height: 100vh;
    }

    .navbar-toggler[b-d4ndgxa7rk] {
        display: block;
    }

    .nav-scrollable[b-d4ndgxa7rk] {
        flex: 1 1 auto;
        height: auto;
        min-height: 0;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .menu-fechado .logo[b-d4ndgxa7rk] {
        justify-content: center;
        padding: 10px 0;
    }
}
/* /Shared/Components/AddEdit/ButtonsAddEdit.razor.rz.scp.css */
.buttons-add-edit[b-9638cl11s2] {
    position: sticky;
    bottom: 0;
    z-index: 9999;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
}

    .buttons-add-edit button[b-9638cl11s2] {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        min-width: 7rem;
        font-weight: var(--font-weight-semibold, 600);
    }

    .buttons-add-edit i[b-9638cl11s2] {
        font-size: 1rem;
    }
/* /Shared/Components/AddEdit/ModalGenericAddEdit.razor.rz.scp.css */
.modal-background[b-ylyvbmglbd] {
    position: fixed !important;
    inset: 0 !important;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.45);
    overflow: hidden;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 1.5rem;
}

.modal-gp-dialog[b-ylyvbmglbd] {
    width: min(92vw, 60rem) !important;
    max-width: 72rem !important;
    margin: 0 !important;
    pointer-events: auto;
}

.modal-gp-content[b-ylyvbmglbd] {
    width: 100%;
    max-height: calc(100vh - 3rem);
    overflow: hidden;
    transform: translateX(7rem);
}

.modal-header[b-ylyvbmglbd] {
    height: 3rem;
    color: white;
    font-weight: var(--font-weight-semibold);
    display: flex;
    justify-content: space-between;
    background-image: linear-gradient(-90deg, var(--gp-sidebar-dark) 0%, var(--gp-sidebar-light) 70%);
}

    .modal-header button[b-ylyvbmglbd] {
        color: white !important;
    }

.modal-title[b-ylyvbmglbd] {
    font-size: var(--font-size-title-cards);
}

.modal-gp-body[b-ylyvbmglbd] {
    overflow-y: auto;
    max-height: calc(100vh - 8rem);
}
/* /Shared/Components/AddEdit/PageGenericAddEdit.razor.rz.scp.css */
.card[b-oh5c7cmvr5] {
    border: 3px solid rgba(0, 0, 0, 0.07);
    border-radius: 1.2rem;
    --bs-card-border-color: none;
}
/* /Shared/Components/AddEdit/SectionInput.razor.rz.scp.css */
.section-header[b-a26he59ot4] {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 1rem;
}


.section-icon[b-a26he59ot4] {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: var(--section-icon-bg, rgba(1, 191, 223, 0.1));
    color: var(--section-icon-color, #01BFDF);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    font-weight: 700;
}

.section-title-description[b-a26he59ot4] {
    display: flex;
    flex-direction: column;
}


    .section-title-description h3[b-a26he59ot4] {
        font-size: 1rem;
        font-weight: var( --font-weight-semibold);
        margin-bottom: -.4px;
    }

    .section-title-description label[b-a26he59ot4] {
        font-size: .8rem;
        font-weight: var( --font-weight-normal);
        color: rgba(0, 0, 0, 50%);
        font-style: italic;
    }

.section[b-a26he59ot4] {
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(0, 0, 0, 10%);
    margin-bottom: 1rem;
}

    .section:last-child[b-a26he59ot4] {
        border-bottom: none;
        margin-bottom: 0;
    }
/* /Shared/Components/BreadCrumbComponent.razor.rz.scp.css */

.size-home[b-9uxtfrnp8q] {
    font-size: 20px;
}
/* /Shared/Components/Buttons/ButtonCancel.razor.rz.scp.css */
.btn-search-icon[b-m2owatz9k3] {
    border: none;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: var(--font-weight-semibold);
    color: black;
    height: 2.2rem;
    gap: .4rem;
    min-width: 7.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.7px solid rgba(0, 0, 0, 60%);
    transition: transform 0.08s ease, background-color 0.15s ease;
}

    .btn-search-icon:hover[b-m2owatz9k3] {
        background-color: rgba(0, 0, 0, 6%);
        filter: brightness(95%);
    }

    .btn-search-icon:active[b-m2owatz9k3] {
        transform: scale(0.98);
        border: 0.7px solid rgba(0, 0, 0, 60%);
        filter: brightness(85%);
    }

    .btn-search-icon:focus[b-m2owatz9k3],
    .btn-search-icon:focus-visible[b-m2owatz9k3] {
        border: 0.7px solid rgba(0, 0, 0, 60%);
        outline: none;
        box-shadow: none;
    }
/* /Shared/Components/Buttons/ButtonClose.razor.rz.scp.css */
.btn-close-custom[b-zc81sxqzkc] {
    border: none;
    background: transparent;
    padding: 0;
    margin: 0;
    cursor: pointer;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .btn-close-custom i[b-zc81sxqzkc] {
        font-size: 24px;
    }

.btn-close-black[b-zc81sxqzkc] {
    color: #000;
}

.btn-close-white[b-zc81sxqzkc] {
    color: #fff;
}
/* /Shared/Components/Buttons/ButtonConfiguration.razor.rz.scp.css */
.icone[b-bcx5kk1q4f] {
    width: 3rem;
    height: 3rem;
    color: rgba(0, 0, 0, 0.5);
}

.btn-search-icon[b-bcx5kk1q4f] {
    border: none;
    transition: transform 0.08s ease, background-color 0.15s ease;
}

    .btn-search-icon:hover[b-bcx5kk1q4f] {
        color: rgba(0, 0, 0, 0.5);
    }

    .btn-search-icon:active[b-bcx5kk1q4f] {
        transform: scale(0.98);
        color: rgba(0, 0, 0, 0.5);
    }

    .btn-search-icon:focus[b-bcx5kk1q4f],
    .btn-search-icon:focus-visible[b-bcx5kk1q4f] {
        outline: none;
        box-shadow: none;
    }
/* /Shared/Components/Buttons/ButtonCreate.razor.rz.scp.css */
.btn-search-icon[b-jiirji8df6] {
    background: var(--cor-primaria-clara);
    border: none;
    border-radius: 10px;
    font-size: 0.85rem;
    color: white;
    height: 2.2rem;
    min-width: 7.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: transform 0.08s ease, background-color 0.15s ease;
}


.btn-search-icon[b-jiirji8df6] {
    border: none;
    transition: transform 0.08s ease, background-color 0.15s ease;
}

    .btn-search-icon:hover[b-jiirji8df6] {
        color: white;
        filter: brightness(95%);
    }

    .btn-search-icon:active[b-jiirji8df6] {
        transform: scale(0.98);
        background: var(--cor-azul-neon);
        color: white;
        filter: brightness(85%);
    }

    .btn-search-icon:focus[b-jiirji8df6],
    .btn-search-icon:focus-visible[b-jiirji8df6] {
        outline: none;
        box-shadow: none;
    }
/* /Shared/Components/Buttons/ButtonDatasetToggle.razor.rz.scp.css */
.toggle-group[b-brxyv69dt0] {
    display: flex;
    align-items: start;
}

.toggle-group-buttons[b-brxyv69dt0] {
    display: flex;
}

.toggle-group-button[b-brxyv69dt0] {
    padding: 2px 16px;
    border: 1px solid var(--gp-primary);
    background: white;
    color: var(--gp-primary);
    cursor: pointer;
}

    .toggle-group-button span[b-brxyv69dt0] {
        font-size: var(--font-size-description-cards);
    }

.toggle-group-button:first-child[b-brxyv69dt0] {
    border-radius: 6px 0 0 6px;
}

    .toggle-group-button:last-child[b-brxyv69dt0] {
        border-radius: 0 6px 6px 0;
    }

    .toggle-group-button.active[b-brxyv69dt0] {
        background: var(--gp-primary);
        color: white;
    }
/* /Shared/Components/Buttons/ButtonDownload.razor.rz.scp.css */
.btn-search-icon[b-a5ttp8z3xl] {
    background: var(--cor-primaria-clara);
    border: none;
    border-radius: 10px;
    font-size: 0.85rem;
    color: white;
    height: 2.2rem;
    min-width: 7.2rem;
    border: none;
    transition: transform 0.08s ease, background-color 0.15s ease;
}


.btn-search-icon[b-a5ttp8z3xl] {
    border: none;
    transition: transform 0.08s ease, background-color 0.15s ease;
}

    .btn-search-icon:hover[b-a5ttp8z3xl] {
        color: white;
        filter: brightness(95%);
    }

    .btn-search-icon:active[b-a5ttp8z3xl] {
        transform: scale(0.98);
        background: var(--cor-azul-neon);
        color: white;
        filter: brightness(85%);
    }

    .btn-search-icon:focus[b-a5ttp8z3xl],
    .btn-search-icon:focus-visible[b-a5ttp8z3xl] {
        outline: none;
        box-shadow: none;
    }
/* /Shared/Components/Buttons/ButtonGeneric.razor.rz.scp.css */
.btn-search-icon[b-rp6w87g464] {
    background: var(--cor-primaria-clara);
    border: none;
    border-radius: 10px;
    font-size: 0.85rem;
    color: white;
    height: 2.2rem;
    min-width: 1.5rem;
    border: none;
    transition: transform 0.08s ease, background-color 0.15s ease;
}

.btn-search-icon[b-rp6w87g464] {
    border: none;
    transition: transform 0.08s ease, background-color 0.15s ease;
}

    .btn-search-icon:hover[b-rp6w87g464] {
        color: white;
        filter: brightness(95%);
    }

    .btn-search-icon:active[b-rp6w87g464] {
        transform: scale(0.98);
        background: var(--cor-azul-neon);
        color: white;
        filter: brightness(85%);
    }

    .btn-search-icon:focus[b-rp6w87g464],
    .btn-search-icon:focus-visible[b-rp6w87g464] {
        outline: none;
        box-shadow: none;
    }
/* /Shared/Components/Buttons/ButtonMenuHamburguer.razor.rz.scp.css */
.icone[b-3hf06ik5yz] {
    background: transparent;
    border: none;
    font-size: 1.3rem;
    color: white;
}

.btn-search-icon[b-3hf06ik5yz] {
    border: none;
    transition: transform 0.08s ease, background-color 0.15s ease;
}

    .btn-search-icon:hover[b-3hf06ik5yz] {
        background-color: transparent;
    }

    .btn-search-icon:active[b-3hf06ik5yz] {
        transform: scale(0.94);
        color: white;
    }

    .btn-search-icon:focus[b-3hf06ik5yz],
    .btn-search-icon:focus-visible[b-3hf06ik5yz] {
        outline: none;
        box-shadow: none;
    }
/* /Shared/Components/Buttons/ButtonNotifications.razor.rz.scp.css */
.icone[b-93ss8u0pla] {
    display: flex;
    align-content: center;
    justify-content: center;
    border: none;
    background: none;
    font-size: 1rem;
}
/* /Shared/Components/Buttons/ButtonSave.razor.rz.scp.css */
.btn-search-icon[b-nz8wmyyerw] {
    background: var(--cor-primaria-clara);
    border: none;
    border-radius: 10px;
    font-size: 0.85rem;
    color: white;
    height: 2.2rem;
    min-width: 7.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: transform 0.08s ease, background-color 0.15s ease;
}


.btn-search-icon[b-nz8wmyyerw] {
    border: none;
    transition: transform 0.08s ease, background-color 0.15s ease;
}

    .btn-search-icon:hover[b-nz8wmyyerw] {
        color: white;
        filter: brightness(95%);
    }

    .btn-search-icon:active[b-nz8wmyyerw] {
        transform: scale(0.98);
        background: var(--cor-azul-neon);
        color: white;
        filter: brightness(85%);
    }

    .btn-search-icon:focus[b-nz8wmyyerw],
    .btn-search-icon:focus-visible[b-nz8wmyyerw] {
        outline: none;
        box-shadow: none;
    }
/* /Shared/Components/Buttons/ButtonSearch.razor.rz.scp.css */
.icone[b-u2xopnhy10] {
    display: flex;
    align-content: center;
    justify-content: center;
    border: none;
    background: none;
    font-size: 1rem;
}
/* /Shared/Components/Buttons/ButtonToggleGroup.razor.rz.scp.css */
.boolean-toggle[b-cdcwvtus2e] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.boolean-toggle-label[b-cdcwvtus2e] {
    color: #64748b;
    font-size: var(--font-size-small-cards);
    font-weight: var(--font-weight-normal);
}

.boolean-toggle-buttons[b-cdcwvtus2e] {
    display: inline-flex;
    align-items: center;
}

.boolean-toggle-button[b-cdcwvtus2e] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 36px;
    padding: 0 14px;
    border: 1px solid #d6dce8;
    background: #ffffff;
    color: #475569;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .boolean-toggle-button:first-child[b-cdcwvtus2e] {
        border-radius: 8px 0 0 8px;
    }

    .boolean-toggle-button:last-child[b-cdcwvtus2e] {
        border-radius: 0 8px 8px 0;
        margin-left: -1px;
    }

    .boolean-toggle-button:hover[b-cdcwvtus2e] {
        background: #f8fafc;
    }

    .boolean-toggle-button.active[b-cdcwvtus2e] {
        background: var(--gp-primary-light);
        border-color: none;
        color: #ffffff;
        z-index: 1;
    }

.boolean-toggle-icon[b-cdcwvtus2e] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .boolean-toggle-icon svg[b-cdcwvtus2e] {
        width: 14px;
        height: 14px;
        stroke: currentColor;
    }
/* /Shared/Components/Input/FilterGroup.razor.rz.scp.css */
.filtros-selects[b-sefom96ufn] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    width: 100%;
    min-width: 0;
}

.filters-container[b-sefom96ufn] {
    position: relative;
    width: 100%;
    min-width: 0;
    overflow: visible;
    box-sizing: border-box;
}

.filters-container-fixed[b-sefom96ufn] {
    position: sticky;
    top: var(--app-header-height, 0px);
    z-index: 1020;
    width: auto;
    max-width: none !important;
    margin-top: -1.5rem;
    margin-right: -1.5rem;
    margin-left: -1.5rem;
    padding: 0.75rem 1.5rem 0.5rem;
    background-color: #ffffff;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
}

.filters-buttons[b-sefom96ufn] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

/* Base dos botões */

[b-sefom96ufn] .filters-action-button,
[b-sefom96ufn] .filters-icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 0.875rem;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease, box-shadow 150ms ease, transform 100ms ease;
}

[b-sefom96ufn] .filters-action-button {
    gap: 0.5rem;
    padding: 0.625rem 1rem;
}

[b-sefom96ufn] .filters-icon-button {
    width: 40px;
    min-width: 40px;
    height: 40px;
    padding: 0;
}

    [b-sefom96ufn] .filters-action-button i,
    [b-sefom96ufn] .filters-icon-button i {
        margin: 0 !important;
        padding: 0 !important;
        font-size: 1rem;
        line-height: 1;
    }

    [b-sefom96ufn] .filters-action-button:focus-visible,
    [b-sefom96ufn] .filters-icon-button:focus-visible {
        outline: none;
        box-shadow: 0 0 0 3px rgba(0, 95, 115, 0.2);
    }

    [b-sefom96ufn] .filters-action-button:active,
    [b-sefom96ufn] .filters-icon-button:active {
        transform: translateY(1px);
    }

    [b-sefom96ufn] .filters-action-button:disabled,
    [b-sefom96ufn] .filters-icon-button:disabled {
        opacity: 0.55;
        cursor: not-allowed;
        transform: none;
    }

/* Limpar filtros */

[b-sefom96ufn] .button-clear-filters {
    color: var(--gp-primary);
    background-color: transparent;
    border-color: var(--gp-primary);
}

    [b-sefom96ufn] .button-clear-filters:hover:not(:disabled) {
        color: var(--gp-primary);
        background-color: rgba(0, 95, 115, 0.07);
        border-color: var(--gp-primary);
    }

/* Mais filtros e contador */

.filters-button-with-counter[b-sefom96ufn] {
    position: relative;
    display: inline-flex;
    align-items: center;
    overflow: visible;
}

[b-sefom96ufn] .button-more-filters {
    color: #344054;
    background-color: #ffffff;
    border-color: #d0d5dd;
}

    [b-sefom96ufn] .button-more-filters:hover:not(:disabled) {
        color: var(--gp-primary);
        background-color: #f8fafc;
        border-color: var(--gp-primary);
    }

.filters-count-badge[b-sefom96ufn] {
    position: absolute;
    top: -8px;
    right: -8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 21px;
    height: 21px;
    padding: 0 5px;
    color: #ffffff;
    background-color: var(--gp-primary);
    border: 2px solid #ffffff;
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
    box-sizing: border-box;
}

/* Aplicar filtros */

[b-sefom96ufn] .button-apply-filters {
    color: #ffffff;
    background-color: var(--gp-primary);
    border-color: var(--gp-primary);
}

    [b-sefom96ufn] .button-apply-filters:hover:not(:disabled) {
        color: #ffffff;
        background-color: var(--gp-primary);
        border-color: var(--gp-primary);
        filter: brightness(0.92);
    }

    [b-sefom96ufn] .button-apply-filters:active:not(:disabled) {
        filter: brightness(0.85);
    }

/* Painel lateral */

.more-filters-backdrop[b-sefom96ufn] {
    position: fixed;
    inset: 0;
    z-index: 1040;
    background-color: rgba(0, 0, 0, 0.35);
}

.more-filters-modal[b-sefom96ufn] {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    width: 380px;
    max-width: 90vw;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -4px 0 16px rgba(0, 0, 0, 0.15);
}

.more-filters-header[b-sefom96ufn] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    padding: 16px 20px;
    border-bottom: 1px solid #eaecf0;
}

    .more-filters-header h5[b-sefom96ufn] {
        margin: 0;
        color: #101828;
        font-size: 1.125rem;
        font-weight: 600;
    }

.more-filters-body[b-sefom96ufn] {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 12px;
    min-height: 0;
    padding: 20px;
    overflow-y: auto;
}

.more-filters-footer[b-sefom96ufn] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 16px 20px;
    background-color: #ffffff;
    border-top: 1px solid #eaecf0;
}

/* Responsividade */

@media (max-width: 768px) {
    .filters-container-fixed[b-sefom96ufn] {
        width: auto;
        margin-right: -1.5rem;
        margin-left: -1.5rem;
        padding: 0.75rem 1.5rem;
    }

    .filters-buttons[b-sefom96ufn] {
        gap: 0.5rem;
    }

    .filters-button-with-counter[b-sefom96ufn] {
        flex: 1 1 auto;
    }

        .filters-button-with-counter[b-sefom96ufn]  .button-more-filters {
            width: 100%;
        }

    .filters-buttons[b-sefom96ufn]  .button-apply-filters {
        flex: 1 1 auto;
    }

    .more-filters-footer[b-sefom96ufn] {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

        .more-filters-footer[b-sefom96ufn]  .filters-action-button {
            width: 100%;
        }
}

@media (max-width: 480px) {
    .filters-buttons[b-sefom96ufn] {
        display: grid;
        grid-template-columns: 40px minmax(0, 1fr);
    }

    .filters-button-with-counter[b-sefom96ufn] {
        width: 100%;
    }

    .filters-buttons[b-sefom96ufn]  .button-apply-filters {
        grid-column: 1 / -1;
        width: 100%;
    }
}
/* /Shared/Components/Input/InputLoadDateHypera.razor.rz.scp.css */
.input-with-icon[b-gj7kdtz52p] {
    position: relative;
    width: 100%;
}

    .input-with-icon i[b-gj7kdtz52p] {
        position: absolute;
        left: 0.5rem;
        top: 50%;
        transform: translateY(-50%);
        color: #6c757d;
        pointer-events: none;
        font-size: 0.9rem;
    }

[b-gj7kdtz52p] .rz-dropdown.form-select {
    display: flex;
    align-items: left;
    padding: .5rem 3rem .4rem 2rem !important; 
    width: 100%;
    height: 2rem;
}

    [b-gj7kdtz52p] .rz-dropdown.form-select .rz-dropdown-label {
        padding: 0 !important;
        border: none;
        background: transparent;
        font-size: inherit;
        font-weight: 400;
        color: #000444;
        line-height: 1.5;
        flex: 1;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    [b-gj7kdtz52p] .rz-dropdown.form-select .rz-placeholder {
        padding-top: 0 !important;
        font-size: inherit !important;
        font-weight: 400;
        color: #000444 !important;
        display: flex;
        align-items: center;
    }

    [b-gj7kdtz52p] .rz-dropdown.form-select .rz-dropdown-trigger {
        font-size: 1rem !important;
        display: none;
    }

    [b-gj7kdtz52p] .rz-dropdown.form-select.rz-focus,
    [b-gj7kdtz52p] .rz-dropdown.form-select:focus-within {
        outline: 0;
        box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    }

    [b-gj7kdtz52p] .rz-dropdown.form-select.rz-state-disabled {
        pointer-events: none;
    }
/* /Shared/Components/Input/InputSelectCard.razor.rz.scp.css */
.gp-select-card[b-i5il6jm76g] {
    width: 100%;
    height: 7rem;
    padding: 1rem;
    border: 1px solid #dee2e6;
    border-radius: 0.75rem;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

    .gp-select-card:not(.gp-select-card-static):hover[b-i5il6jm76g] {
        border-color: var(--gp-primary, #00859E);
        box-shadow: 0 0 0 0.15rem rgba(0, 133, 158, 0.08);
    }

.gp-select-card-selected[b-i5il6jm76g] {
    border-color: var(--gp-primary, #00859E);
    box-shadow: 0 0 0 0.15rem rgba(0, 133, 158, 0.12);
}

.gp-select-card-static[b-i5il6jm76g] {
    cursor: default;
}

    .gp-select-card-static:hover[b-i5il6jm76g] {
        border-color: #dee2e6;
        box-shadow: none;
        background-color: #ffffff;
    }

    .gp-select-card-static.gp-select-card-selected[b-i5il6jm76g] {
        border-color: var(--gp-primary, #00859E);
        box-shadow: 0 0 0 0.15rem rgba(0, 133, 158, 0.12);
    }

.gp-select-card-disabled[b-i5il6jm76g] {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: #f8f9fa;
}

    .gp-select-card-disabled:hover[b-i5il6jm76g] {
        border-color: #dee2e6;
        box-shadow: none;
        background-color: #f8f9fa;
    }

.gp-select-card-radio[b-i5il6jm76g] {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .gp-select-card-radio input[b-i5il6jm76g] {
        width: 1rem;
        height: 1rem;
        margin: 0;
        cursor: pointer;
        accent-color: var(--gp-primary, #00859E);
    }

.gp-select-card-disabled .gp-select-card-radio input[b-i5il6jm76g],
.gp-select-card-static .gp-select-card-radio input[b-i5il6jm76g] {
    cursor: default;
}

.gp-select-card-icon-wrapper[b-i5il6jm76g] {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    border-radius: 50%;
    background-color: var(--section-icon-bg, rgba(1, 191, 223, 0.1));
    color: var(--section-icon-color, #01BFDF);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gp-select-card-selected .gp-select-card-icon-wrapper[b-i5il6jm76g] {
    background-color: rgba(0, 133, 158, 0.14);
}

.gp-select-card-icon-wrapper i[b-i5il6jm76g] {
    font-size: 1.15rem;
}

.gp-select-card-content[b-i5il6jm76g] {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.gp-select-card-title[b-i5il6jm76g] {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--section-icon-color, #212529);
    line-height: 1.2;
}

.gp-select-card-description[b-i5il6jm76g] {
    font-size: 0.78rem;
    font-weight: 500;
    color: #6c757d;
    line-height: 1.35;
}

@media (max-width: 576px) {
    .gp-select-card[b-i5il6jm76g] {
        align-items: flex-start;
        padding: 0.875rem;
    }

    .gp-select-card-title[b-i5il6jm76g] {
        font-size: 0.9rem;
    }

    .gp-select-card-description[b-i5il6jm76g] {
        font-size: 0.75rem;
    }
}
/* /Shared/Components/Input/InputSelectMultipleHypera.razor.rz.scp.css */
.multi-select[b-n3w8ncu6p3] {
    position: relative;
    width: 100%;
}

.multi-select-button[b-n3w8ncu6p3] {
    width: 100%;
    height: 1.7rem;
    min-height: 1.7rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0 0.65rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.75rem;
    background-color: #fff;
    color: #212529;
    font-family: inherit;
    font-size: 0.85rem;
    line-height: 1;
    text-align: left;
    cursor: pointer;
}

    .multi-select-button:hover:not(:disabled)[b-n3w8ncu6p3] {
        border-color: rgba(0, 0, 0, 0.35);
    }

    .multi-select-button:focus[b-n3w8ncu6p3],
    .multi-select-button:focus-visible[b-n3w8ncu6p3] {
        outline: none;
        box-shadow: none;
        border-color: var(--cor-primaria, #0d6efd);
    }

    .multi-select-button:disabled[b-n3w8ncu6p3] {
        background-color: #e9ecef;
        opacity: 0.75;
        cursor: not-allowed;
    }

.multi-select-left[b-n3w8ncu6p3] {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    overflow: hidden;
}

    .multi-select-left > i[b-n3w8ncu6p3] {
        color: #6c757d;
        font-size: 0.95rem;
        flex-shrink: 0;
    }

.multi-select-text[b-n3w8ncu6p3],
.multi-select-placeholder[b-n3w8ncu6p3] {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.multi-select-text[b-n3w8ncu6p3] {
    color: #212529;
}

.multi-select-placeholder[b-n3w8ncu6p3] {
    color: #6c757d;
}

.multi-select-arrow[b-n3w8ncu6p3] {
    color: #6c757d;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.multi-select-click-outside[b-n3w8ncu6p3] {
    position: fixed;
    inset: 0;
    z-index: 1049;
    background: transparent;
}

.multi-select-dropdown[b-n3w8ncu6p3] {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    z-index: 1050;
    width: 100%;
    max-height: 12rem;
    overflow-x: hidden;
    overflow-y: auto;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 0.75rem;
    background-color: #fff;
    box-shadow: 0 0.75rem 1.75rem rgba(0, 0, 0, 0.12);
}

.multi-select-option[b-n3w8ncu6p3] {
    width: 100%;
    min-height: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.55rem;
    margin: 0;
    border: none;
    background-color: transparent;
    color: #212529;
    font-family: inherit;
    font-size: 0.85rem;
    line-height: 1.2;
    text-align: left;
    cursor: pointer;
    user-select: none;
}

    .multi-select-option:hover[b-n3w8ncu6p3] {
        background-color: #f1f3f5;
    }

    .multi-select-option.selected[b-n3w8ncu6p3] {
        background-color: #f1f3f5;
    }

    .multi-select-option:focus[b-n3w8ncu6p3],
    .multi-select-option:focus-visible[b-n3w8ncu6p3] {
        outline: none;
        box-shadow: none;
        background-color: #f1f3f5;
    }

.multi-select-checkbox-container[b-n3w8ncu6p3] {
    width: 0.9rem;
    min-width: 0.9rem;
    height: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.multi-select-checkbox[b-n3w8ncu6p3] {
    width: 0.9rem;
    height: 0.9rem;
    margin: 0;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 0.2rem;
    accent-color: var(--cor-primaria, #0d6efd);
    cursor: pointer;
}

    .multi-select-checkbox:focus[b-n3w8ncu6p3],
    .multi-select-checkbox:focus-visible[b-n3w8ncu6p3] {
        outline: none;
        box-shadow: none;
    }

    .multi-select-checkbox:disabled[b-n3w8ncu6p3] {
        cursor: not-allowed;
    }

.multi-select-option-text[b-n3w8ncu6p3] {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.multi-select-search[b-n3w8ncu6p3] {
    position: sticky;
    top: 0;
    z-index: 2;
    width: 100%;
    height: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    box-sizing: border-box;
    border-bottom: 1px solid #e0e0e0;
    border-top-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem;
    background-color: #fff;
}

    .multi-select-search > i[b-n3w8ncu6p3] {
        color: #6c757d;
        font-size: 0.9rem;
        flex-shrink: 0;
    }

.multi-select-search-input[b-n3w8ncu6p3] {
    width: 100%;
    min-width: 0;
    height: auto;
    padding: 0;
    border: none;
    outline: none;
    background: transparent;
    color: #212529;
    font-family: inherit;
    font-size: 0.85rem;
    line-height: 1;
}

    .multi-select-search-input[b-n3w8ncu6p3]::placeholder {
        color: #6c757d;
    }

    .multi-select-search-input:focus[b-n3w8ncu6p3],
    .multi-select-search-input:focus-visible[b-n3w8ncu6p3] {
        border: none;
        outline: none;
        box-shadow: none;
    }

    .multi-select-search-input:disabled[b-n3w8ncu6p3] {
        cursor: default;
    }

.multi-select-empty[b-n3w8ncu6p3] {
    width: 100%;
    padding: 0.65rem;
    color: #6c757d;
    font-size: 0.85rem;
    text-align: center;
}
/* /Shared/Components/Input/InputSelectSearchHypera.razor.rz.scp.css */
.single-select[b-z8aix0cjp6] {
    position: relative;
    width: 100%;
}

.single-select-button[b-z8aix0cjp6] {
    width: 100%;
    height: 1.7rem;
    min-height: 1.7rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0 0.65rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.75rem;
    background-color: #fff;
    color: #212529;
    font-size: 0.85rem;
    line-height: 1;
    cursor: pointer;
}

    .single-select-button:hover[b-z8aix0cjp6] {
        border-color: rgba(0, 0, 0, 0.35);
    }

    .single-select-button:focus[b-z8aix0cjp6],
    .single-select-button:focus-visible[b-z8aix0cjp6] {
        outline: none;
        box-shadow: none;
        border-color: var(--cor-primaria, #0d6efd);
    }

    .single-select-button:disabled[b-z8aix0cjp6] {
        background-color: #e9ecef;
        opacity: 0.75;
        cursor: not-allowed;
    }

.single-select-left[b-z8aix0cjp6] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
}

    .single-select-left i[b-z8aix0cjp6] {
        color: #6c757d;
        font-size: 0.95rem;
        flex-shrink: 0;
    }

.single-select-text[b-z8aix0cjp6],
.single-select-placeholder[b-z8aix0cjp6] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.single-select-placeholder[b-z8aix0cjp6] {
    color: #6c757d;
}

.single-select-arrow[b-z8aix0cjp6] {
    color: #6c757d;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.single-select-click-outside[b-z8aix0cjp6] {
    position: fixed;
    inset: 0;
    z-index: 1018;
    background: transparent;
}

.single-select-dropdown[b-z8aix0cjp6] {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    z-index: 1019;
    width: 100%;
    max-height: 12rem;
    overflow-y: auto;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 0.75rem;
    background-color: #fff;
    box-shadow: 0 0.75rem 1.75rem rgba(0, 0, 0, 0.12);
}

.single-select-option[b-z8aix0cjp6] {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.55rem;
    border: none;
    background-color: transparent;
    color: #212529;
    font-family: inherit;
    font-size: 0.85rem;
    text-align: left;
    cursor: pointer;
    user-select: none;
}

    .single-select-option:hover[b-z8aix0cjp6] {
        background-color: #f1f3f5;
    }

    .single-select-option.selected[b-z8aix0cjp6] {
        background-color: #f1f3f5;
    }

    .single-select-option:focus[b-z8aix0cjp6],
    .single-select-option:focus-visible[b-z8aix0cjp6] {
        outline: none;
        box-shadow: none;
        background-color: #f1f3f5;
    }

    .single-select-option:disabled[b-z8aix0cjp6] {
        cursor: default;
        opacity: 1;
    }

.single-select-option-check[b-z8aix0cjp6] {
    width: 0.9rem;
    min-width: 0.9rem;
    height: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cor-primaria, #0d6efd);
    font-size: 0.85rem;
}

.single-select-option-text[b-z8aix0cjp6] {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.single-select-search[b-z8aix0cjp6] {
    position: sticky;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    box-sizing: border-box;
    border-bottom: 1px solid #e0e0e0;
    border-top-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem;
    background-color: #fff;
}

    .single-select-search i[b-z8aix0cjp6] {
        color: #6c757d;
        font-size: 0.9rem;
        flex-shrink: 0;
    }

.single-select-search-input[b-z8aix0cjp6] {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: #212529;
    font-size: 0.85rem;
}

    .single-select-search-input:focus[b-z8aix0cjp6],
    .single-select-search-input:focus-visible[b-z8aix0cjp6] {
        border: none;
        outline: none;
        box-shadow: none;
    }

    .single-select-search-input:disabled[b-z8aix0cjp6] {
        cursor: default;
    }

.single-select-empty[b-z8aix0cjp6] {
    padding: 0.65rem;
    color: #6c757d;
    font-size: 0.85rem;
    text-align: center;
}
/* /Shared/Components/Input/InputToggleSwitch.razor.rz.scp.css */
.gp-toggle[b-hmjuhevrft] {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    cursor: pointer;
}

    .gp-toggle input[b-hmjuhevrft] {
        opacity: 0;
        width: 0;
        height: 0;
    }

.gp-toggle-slider[b-hmjuhevrft] {
    position: absolute;
    inset: 0;
    background-color: #d1d5db;
    border-radius: 999px;
    transition: background-color 0.2s ease;
}

    .gp-toggle-slider[b-hmjuhevrft]::before {
        content: "";
        position: absolute;
        width: 18px;
        height: 18px;
        left: 3px;
        top: 3px;
        background-color: #ffffff;
        border-radius: 50%;
        transition: transform 0.2s ease;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
    }

.gp-toggle input:checked + .gp-toggle-slider[b-hmjuhevrft] {
    background-color: #00859E;
}

    .gp-toggle input:checked + .gp-toggle-slider[b-hmjuhevrft]::before {
        transform: translateX(20px);
    }

.gp-toggle input:disabled + .gp-toggle-slider[b-hmjuhevrft] {
    opacity: 0.55;
    cursor: not-allowed;
}

.gp-toggle:has(input:disabled)[b-hmjuhevrft] {
    cursor: not-allowed;
}
/* /Shared/Components/LoadingInput.razor.rz.scp.css */
.loader[b-8z1mpq9vde] {
    width: 100%;
    height: 20px;
    background: linear-gradient(90deg, #0001 33%, #0005 50%, #0001 66%) #f2f2f2;
    background-size: 300% 100%;
    animation: l1-b-8z1mpq9vde 1s infinite linear;
}

@keyframes l1-b-8z1mpq9vde {
    0% {
        background-position: right
    }
}
/* /Shared/Components/NavTabs.razor.rz.scp.css */
/*.nav-tabs-custom {
    display: flex;
    gap: 8px;
    width: 100%;
    padding: 6px;
    background: #f3f4f6;
    border-radius: 12px;
    height: 2.6rem;
    margin-bottom: 1rem;
}

.nav-tabs-custom__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    background: transparent;
    color: #6b7280;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

    .nav-tabs-custom__item:hover {
        background: #e5e7eb;
        color: #111827;
    }

    .nav-tabs-custom__item.active {
        background: #ffffff;
        color: #111827;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
    }

    .nav-tabs-custom__item.disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

        .nav-tabs-custom__item.disabled:hover {
            background: transparent;
            color: #6b7280;
        }
*/

.nav-tabs-custom[b-3ny30ec87j] {
    display: flex;
    width: 100%;
    height: 2.6rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.nav-tabs-custom__item[b-3ny30ec87j] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    border-bottom: 2px solid transparent;
    background: transparent;
    color: #6b7280;
    padding: 10px 16px;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease;
    margin-bottom: -1.5px;
}

    .nav-tabs-custom__item:hover[b-3ny30ec87j] {
        color: var(--gp-primary);
        border-bottom-color: var(--gp-primary);
    }

    .nav-tabs-custom__item.active[b-3ny30ec87j] {
        color: var(--gp-primary);
        border-bottom-color: var(--gp-primary);
    }

    .nav-tabs-custom__item.disabled[b-3ny30ec87j] {
        opacity: 0.5;
        cursor: not-allowed;
        color: #6b7280;
        border-bottom-color: transparent;
    }

        .nav-tabs-custom__item.disabled:hover[b-3ny30ec87j] {
            color: #6b7280;
            border-bottom-color: transparent;
        }
/* /Shared/Components/Search.razor.rz.scp.css */
.input-search-icon[b-utt0uo0jja] {
    position: relative;
}

    .input-search-icon input[b-utt0uo0jja] {
        padding-left: 2rem;
        border: 1px solid rgba(0, 0, 0, 0.2);
        border-radius: 0.75rem;
        height: 2.2rem;
        font-size: 0.85rem;
        width: 20rem;
    }

    .input-search-icon i[b-utt0uo0jja] {
        position: absolute;
        left: 0.5rem;
        top: 50%;
        transform: translateY(-50%);
        color: #6c757d;
        pointer-events: none;
        font-size: 0.9rem;
    }
/* /Shared/Components/TableGeneric.razor.rz.scp.css */
.hypera-table-wrapper[b-ovy4min3zy] {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow: hidden;
    contain: inline-size;
    border: 1px solid var(--gp-tables-color);
    border-radius: 10px;
}

    .hypera-table-wrapper .dataTable-wrapper[b-ovy4min3zy] {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow: hidden;
    }

    .hypera-table-wrapper .dataTable-container[b-ovy4min3zy] {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow-x: auto;
        overflow-y: hidden;
        overscroll-behavior-x: contain;
    }

.hypera-table[b-ovy4min3zy] {
    width: max-content;
    min-width: 100%;
    max-width: none;
    margin-bottom: 0;
    border: none;
}

    .hypera-table th[b-ovy4min3zy],
    .hypera-table td[b-ovy4min3zy] {
        white-space: nowrap;
    }

    .hypera-table[b-ovy4min3zy]  td {
        border-bottom: 1px solid var(--gp-tables-color);
    }

[b-ovy4min3zy] .thead-light th {
    height: 2.5rem;
    padding: 0.5rem;
    font-size: var(--font-size-description-cards);
    font-weight: var(--font-weight-normal);
    color: white;
    background-color: transparent;
}

.hypera-table thead.header-centralized th[b-ovy4min3zy] {
    text-align: center;
    vertical-align: middle;
}

.hypera-table thead th[b-ovy4min3zy] {
    vertical-align: middle;
}


/*
 * RODAPÉ
 */

.footer-table-list[b-ovy4min3zy] {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

    .footer-table-list p[b-ovy4min3zy] {
        font-size: var(--font-size-description-cards);
    }


/*
 * ORDENAÇÃO
 */

.header-column-sortable[b-ovy4min3zy] {
    padding: 0 !important;
}

.table-sort-button[b-ovy4min3zy] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    min-height: 2.5rem;
    padding: 0.5rem;
    color: inherit;
    background: transparent;
    border: none;
    font: inherit;
    text-align: inherit;
    cursor: pointer;
}

.header-centralized .table-sort-button[b-ovy4min3zy] {
    justify-content: center;
}

.table-sort-label[b-ovy4min3zy] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.table-sort-icon[b-ovy4min3zy] {
    flex-shrink: 0;
}


/*
 * COLUNAS OCULTAS
 */

.hypera-table[b-ovy4min3zy]  .hypera-column-hidden {
    display: none !important;
}


/*
 * COLUNAS FIXAS
 */

.hypera-table[b-ovy4min3zy]  .hypera-column-fixed {
    position: sticky;
    left: var(--hypera-fixed-left);
    width: var(--hypera-fixed-width);
    min-width: var(--hypera-fixed-width);
    max-width: var(--hypera-fixed-width);
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hypera-table[b-ovy4min3zy]  thead .hypera-column-fixed {
    z-index: 5;
}

.hypera-table[b-ovy4min3zy]  tbody .hypera-column-fixed {
    z-index: 3;
}

.hypera-table[b-ovy4min3zy]  .hypera-column-fixed-last {
    box-shadow: 7px 0 9px -9px rgba(0, 0, 0, 0.7);
}


/*
 * COLUNA DE AÇÕES FIXA
 */

.hypera-table[b-ovy4min3zy]  .hypera-column-actions-fixed {
    position: sticky;
    right: 0;
    width: var(--hypera-actions-column-width);
    min-width: var(--hypera-actions-column-width);
    max-width: var(--hypera-actions-column-width);
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
    box-shadow: -7px 0 9px -9px rgba(0, 0, 0, 0.7);
}

.hypera-table[b-ovy4min3zy]  thead .hypera-column-actions-fixed {
    z-index: 6;
}

.hypera-table[b-ovy4min3zy]  tbody .hypera-column-actions-fixed {
    z-index: 4;
}


/*
 * LOADING E SEM REGISTROS
 */

.hypera-table[b-ovy4min3zy]  .hypera-table-status-row > td {
    position: static;
    width: auto;
    min-width: 0;
    max-width: none;
    overflow: visible;
    text-overflow: initial;
    box-shadow: none;
}
/* /Shared/Components/TableGeneric2.razor.rz.scp.css */
.hypera-table-wrapper[b-obp7nd0gjq] {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow: hidden;
    contain: inline-size;
    border: 1px solid var(--gp-tables-color);
    border-radius: 10px;
}

    .hypera-table-wrapper .dataTable-wrapper[b-obp7nd0gjq] {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow: hidden;
    }

    .hypera-table-wrapper .dataTable-container[b-obp7nd0gjq] {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow-x: auto;
        overflow-y: hidden;
        overscroll-behavior-x: contain;
    }

.hypera-table[b-obp7nd0gjq] {
    width: max-content;
    min-width: 100%;
    max-width: none;
    margin-bottom: 0;
    border: none;
}

    .hypera-table th[b-obp7nd0gjq],
    .hypera-table td[b-obp7nd0gjq] {
        white-space: nowrap;
    }

    .hypera-table[b-obp7nd0gjq]  td {
        border-bottom: 1px solid var(--gp-tables-color);
    }

[b-obp7nd0gjq] .thead-light th {
    height: 2.5rem;
    padding: 0.5rem;
    font-size: var(--font-size-description-cards);
    font-weight: var(--font-weight-normal);
    color: white;
    background-color: transparent;
}

.hypera-table thead.header-centralized th[b-obp7nd0gjq] {
    text-align: center;
    vertical-align: middle;
}

.hypera-table thead th[b-obp7nd0gjq] {
    vertical-align: middle;
}


/*
 * RODAPÉ
 */

.footer-table-list[b-obp7nd0gjq] {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

    .footer-table-list p[b-obp7nd0gjq] {
        font-size: var(--font-size-description-cards);
    }


/*
 * ORDENAÇÃO
 */

.header-column-sortable[b-obp7nd0gjq] {
    padding: 0 !important;
}

.table-sort-button[b-obp7nd0gjq] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    min-height: 2.5rem;
    padding: 0.5rem;
    color: inherit;
    background: transparent;
    border: none;
    font: inherit;
    text-align: inherit;
    cursor: pointer;
}

.header-centralized .table-sort-button[b-obp7nd0gjq] {
    justify-content: center;
}

.table-sort-label[b-obp7nd0gjq] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.table-sort-icon[b-obp7nd0gjq] {
    flex-shrink: 0;
}


/*
 * COLUNAS OCULTAS
 */

.hypera-table[b-obp7nd0gjq]  .hypera-column-hidden {
    display: none !important;
}


/*
 * COLUNAS FIXAS
 */

.hypera-table[b-obp7nd0gjq]  .hypera-column-fixed {
    position: sticky;
    left: var(--hypera-fixed-left);
    width: var(--hypera-fixed-width);
    min-width: var(--hypera-fixed-width);
    max-width: var(--hypera-fixed-width);
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hypera-table[b-obp7nd0gjq]  thead .hypera-column-fixed {
    z-index: 5;
}

.hypera-table[b-obp7nd0gjq]  tbody .hypera-column-fixed {
    z-index: 3;
}

.hypera-table[b-obp7nd0gjq]  .hypera-column-fixed-last {
    box-shadow: 7px 0 9px -9px rgba(0, 0, 0, 0.7);
}


/*
 * COLUNA DE AÇÕES FIXA
 */

.hypera-table[b-obp7nd0gjq]  .hypera-column-actions-fixed {
    position: sticky;
    right: 0;
    width: var(--hypera-actions-column-width);
    min-width: var(--hypera-actions-column-width);
    max-width: var(--hypera-actions-column-width);
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
    box-shadow: -7px 0 9px -9px rgba(0, 0, 0, 0.7);
}

.hypera-table[b-obp7nd0gjq]  thead .hypera-column-actions-fixed {
    z-index: 6;
}

.hypera-table[b-obp7nd0gjq]  tbody .hypera-column-actions-fixed {
    z-index: 4;
}


/*
 * LOADING E SEM REGISTROS
 */

.hypera-table[b-obp7nd0gjq]  .hypera-table-status-row > td {
    position: static;
    width: auto;
    min-width: 0;
    max-width: none;
    overflow: visible;
    text-overflow: initial;
    box-shadow: none;
}
/* /Shared/Components/TableListGeneric.razor.rz.scp.css */
.table-list-generic[b-g1prlnsxyi] {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-top: 2rem;
    box-shadow: 0 8px 24px rgba(0, 32, 96, 0.08);
}

    .table-list-generic > .card-body[b-g1prlnsxyi] {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

        .table-list-generic > .card-body h4[b-g1prlnsxyi] {
            font-size: var(--font-size-title-cards);
            font-weight: var(--font-weight-semibold);
            color: var(--gp-sidebar-light);
        }


.table-list-generic-header[b-g1prlnsxyi] {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex-wrap: wrap;
}

.table-list-generic-actions[b-g1prlnsxyi] {
    max-width: 100%;
    min-width: 0;
    flex-wrap: wrap;
}

.table-list-generic-filter-container[b-g1prlnsxyi] {
    max-width: 100%;
    min-width: 0;
}

.table-list-generic-filter[b-g1prlnsxyi] {
    min-width: 260px;
}

.table-list-generic[b-g1prlnsxyi]  .hypera-table-wrapper {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.table-column-selector-container[b-g1prlnsxyi] {
    max-width: 100%;
    min-width: 0;
}

    .table-column-selector-container[b-g1prlnsxyi]  .multi-select {
        width: 280px;
        max-width: 100%;
    }
/* /Shared/Components/TableListGeneric2.razor.rz.scp.css */
.table-list-generic[b-8d7rqz7z2e] {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-top: 2rem;
    box-shadow: 0 8px 24px rgba(0, 32, 96, 0.08);
}

    .table-list-generic > .card-body[b-8d7rqz7z2e] {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

        .table-list-generic > .card-body h4[b-8d7rqz7z2e] {
            font-size: var(--font-size-title-cards);
            font-weight: var(--font-weight-semibold);
            color: var(--gp-sidebar-light);
        }


.table-list-generic-header[b-8d7rqz7z2e] {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex-wrap: wrap;
}

.table-list-generic-actions[b-8d7rqz7z2e] {
    max-width: 100%;
    min-width: 0;
    flex-wrap: wrap;
}

.table-list-generic-filter-container[b-8d7rqz7z2e] {
    max-width: 100%;
    min-width: 0;
}

.table-list-generic-filter[b-8d7rqz7z2e] {
    min-width: 260px;
}

.table-list-generic[b-8d7rqz7z2e]  .hypera-table-wrapper {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.table-column-selector-container[b-8d7rqz7z2e] {
    max-width: 100%;
    min-width: 0;
}

    .table-column-selector-container[b-8d7rqz7z2e]  .multi-select {
        width: 280px;
        max-width: 100%;
    }
/* /Shared/Components/Tables/SimpleTableGeneric.razor.rz.scp.css */
.simple-table-container[b-jveqsz60e4] {
    width: 100%;
    overflow: hidden;
    background-color: var(--background-default, #ffffff);
    border: 1px solid #e5e7eb;
    border-radius: 10px;
}

.simple-table-scroll[b-jveqsz60e4] {
    width: 100%;
    overflow-x: auto;
}

.simple-table[b-jveqsz60e4] {
    width: 100%;
    min-width: 520px;
    border-collapse: collapse;
    table-layout: fixed;
    background-color: transparent;
}

    .simple-table thead[b-jveqsz60e4] {
        background-color: var( --background-default-light, #f5f7f8 );
    }

    .simple-table th[b-jveqsz60e4] {
        height: 42px;
        padding: 10px 14px;
        border-bottom: 1px solid #dfe3e6;
        color: #4b5563;
        font-size: 12px;
        font-weight: 600;
        line-height: 1.2;
        text-align: center;
        white-space: nowrap;
    }

    .simple-table tbody tr[b-jveqsz60e4] {
        transition: background-color 0.15s ease;
    }

        .simple-table tbody tr:not(:last-child)[b-jveqsz60e4] {
            border-bottom: 1px solid #edf0f2;
        }

        .simple-table tbody tr:hover[b-jveqsz60e4] {
            background-color: #f8fafb;
        }

    .simple-table[b-jveqsz60e4]  td {
        height: 44px;
        padding: 11px 14px;
        color: #374151;
        font-size: 13px;
        font-weight: 400;
        line-height: 1.3;
        text-align: center;
        vertical-align: middle;
    }

        .simple-table[b-jveqsz60e4]  td:first-child,
        .simple-table th:first-child[b-jveqsz60e4] {
            width: 40%;
            text-align: left;
        }

        .simple-table[b-jveqsz60e4]  td:not(:first-child),
        .simple-table th:not(:first-child)[b-jveqsz60e4] {
            width: 20%;
        }

.simple-table-empty[b-jveqsz60e4] {
    height: 90px !important;
    color: #6b7280 !important;
    text-align: center !important;
}

.simple-table-last-row[b-jveqsz60e4] {
    background-color: #f3f7f8;
}

    .simple-table-last-row:hover[b-jveqsz60e4] {
        background-color: #f3f7f8 !important;
    }

    .simple-table-last-row[b-jveqsz60e4]  td {
        border-top: 2px solid var(--gp-primary, #005f73);
        color: #1f2937;
        font-weight: 700;
    }

@media (max-width: 768px) {
    .simple-table[b-jveqsz60e4] {
        min-width: 480px;
    }

        .simple-table th[b-jveqsz60e4],
        .simple-table[b-jveqsz60e4]  td {
            padding: 10px 12px;
            font-size: 12px;
        }
}
/* /Shared/Components/TooltipHypera.razor.rz.scp.css */
.custom-tooltip-container[b-dkp78wc3w7] {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    outline: none;
}

.custom-tooltip-icon[b-dkp78wc3w7] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #6c757d;
    cursor: help;
    transition: color 0.2s ease, transform 0.2s ease;
}

.custom-tooltip-container:hover .custom-tooltip-icon[b-dkp78wc3w7],
.custom-tooltip-container:focus .custom-tooltip-icon[b-dkp78wc3w7],
.custom-tooltip-container:focus-within .custom-tooltip-icon[b-dkp78wc3w7] {
    color: #005f73;
    transform: scale(1.08);
}

.custom-tooltip[b-dkp78wc3w7] {
    position: absolute;
    z-index: 9999;
    left: 50%;
    bottom: calc(100% + 10px);
    width: max-content;
    min-width: 120px;
    max-width: 260px;
    padding: 8px 10px;
    border-radius: 6px;
    background-color: #212529;
    color: #ffffff;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    text-align: left;
    white-space: normal;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}

    .custom-tooltip[b-dkp78wc3w7]::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        border-width: 6px;
        border-style: solid;
        border-color: #212529 transparent transparent transparent;
    }

.custom-tooltip-container:hover .custom-tooltip[b-dkp78wc3w7],
.custom-tooltip-container:focus .custom-tooltip[b-dkp78wc3w7],
.custom-tooltip-container:focus-within .custom-tooltip[b-dkp78wc3w7] {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
