.filter-panel-resume {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 12px;
  gap: 8px;
}

/* Header da view ativa */
.filter-panel-resume__view-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 8px;
  border: 1px solid #dee2e6;
  border: 1px solid var(--border-default, #dee2e6);
  margin-bottom: 4px;
  flex-shrink: 0;
}

.filter-panel-resume__view-info {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 1;
  min-width: 0;
}

.filter-panel-resume__view-label {
  font-size: 11px;
  color: #6c757d;
  color: var(--text-secondary, #6c757d);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.filter-panel-resume__view-name {
  font-size: 14px;
  font-weight: 600;
  color: #212529;
  color: var(--text-default, #212529);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.filter-panel-resume__view-edited {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  background-color: #fff3cd;
  color: #856404;
  border: 1px solid #ffc107;
  flex-shrink: 0;
  animation: pulse-edited 2s ease-in-out infinite;
}

@keyframes pulse-edited {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.filter-panel-resume__view-public {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  background-color: #cce5ff;
  color: #004085;
  border: 1px solid #1890ff;
  flex-shrink: 0;
}

.filter-panel-resume__save-btn {
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 6px;
  border: 1px solid #dee2e6;
  border: 1px solid var(--border-default, #dee2e6);
  background-color: #fff;
  color: #6c757d;
  color: var(--text-secondary, #6c757d);
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.filter-panel-resume__save-btn:hover:not(:disabled) {
  background-color: #f8f9fa;
  border-color: #adb5bd;
}

.filter-panel-resume__save-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.filter-panel-resume__save-btn.has-changes {
  background-color: #2E1956;
  background-color: var(--color-primary-purple, #2E1956);
  color: #fff;
  border-color: #2E1956;
  border-color: var(--color-primary-purple, #2E1956);
}

.filter-panel-resume__save-btn.has-changes:hover:not(:disabled) {
  background-color: #1a0f33;
  background-color: var(--color-primary-purple-dark, #1a0f33);
}

.filter-panel-resume__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1;
  min-height: 0;
}

.filter-panel-resume__display-options {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  gap: 2px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-default);
  flex-shrink: 0;
}

.filter-panel-resume__display-options .lc-tooltip {
  flex: 1 1;
  display: flex;
  justify-content: center;
}

.filter-panel-resume__section {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 0 1 auto;
  min-height: 0;
}

.filter-panel-resume__section-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-default);
  margin: 0;
  flex-shrink: 0;
}

.filter-panel-resume__section-scroll {
  overflow-y: auto;
  max-height: calc(100vh - 390px);
}

.filter-panel-resume__icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
  color: #666;
}

.filter-panel-resume__icon-btn:hover:not(:disabled) {
  background: #f0f0f0;
  border-color: #d0d0d0;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  color: #333;
}

.filter-panel-resume__icon-btn:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.filter-panel-resume__icon-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.filter-panel-resume__icon-btn.active {
  background: #e6f2ff;
  border-color: #2E1956;
  box-shadow: 0 0 0 2px rgba(46, 25, 86, 0.1);
  color: #2E1956;
}

.filter-panel-resume__icon-btn.active:hover:not(:disabled) {
  background: #d9ebff;
  border-color: #2E1956;
}

.filter-panel-resume__actions {
  display: flex;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-default);
}

.filter-panel-resume__btn {
  flex: 1 1;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.filter-panel-resume__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.filter-panel-resume__btn--primary {
  background-color: var(--color-primary-purple);
  color: white;
}

.filter-panel-resume__btn--primary:hover:not(:disabled) {
  background-color: var(--color-primary-purple-dark);
}

.filter-panel-resume__btn--secondary {
  background-color: transparent;
  color: var(--text-default);
  border: 1px solid var(--border-default);
}

.filter-panel-resume__btn--secondary:hover:not(:disabled) {
  background-color: var(--background-hover);
}


.gtmConfiguration_footerModalBtn__lWrO9 {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}
.gtmConfiguration_webSitesLabel__Kd\+nD {
    margin-bottom: 2rem;
}
/* ── Snapshot Management – Badge styles for LcInfiniteTable cells ── */

/* ── Provider Badges ──────────────────────────────────────────── */
.provider-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

.provider-badge.aws {
  background: #fff3e0;
  color: #e65100;
}

.provider-badge.azure {
  background: #e3f2fd;
  color: #0d47a1;
}

.provider-badge.oci {
  background: #fce4ec;
  color: #b71c1c;
}

/* ── Risk Badge ────────────────────────────────────────────────── */
.risk-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
}

.risk-badge.critical {
  background: #f8d7da;
  color: #721c24;
}

.risk-badge.high {
  background: #ffe0b2;
  color: #e65100;
}

.risk-badge.medium {
  background: #fff9c4;
  color: #f57f17;
}

.risk-badge.low {
  background: #c8e6c9;
  color: #1b5e20;
}

/* ── Orphan Badge ──────────────────────────────────────────────── */
.orphan-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
}

.orphan-badge.orphan {
  background: #f8d7da;
  color: #721c24;
}

.orphan-badge.active {
  background: #c8e6c9;
  color: #1b5e20;
}

/* ── Card active/fade states for LCDashboard ─────────────────── */
.card-active {
  opacity: 1;
  transition: opacity 0.2s ease;
}

.card-fade {
  opacity: 0.45;
  transition: opacity 0.2s ease;
}

.card-fade:hover {
  opacity: 0.75;
}

.lcdashboard .lc-selectLabel {
    position: static;
    width: 55px;
    height: 18px;
    left: 0px;
    top: 0px;
    font-family: "Ubuntu", sans-serif;
    font-style: normal;
    line-height: 150%;
    font-size: 12px;
    line-height: 150%;
    margin: 3px 0px;
}

.lcdashboard .lc-fixedFilter {
    align-items: center;
    margin-left: 15px;
    margin-top: 10px;
    width: 100%;
    top: 110px;
    background-color: #fafafa;
    overflow-x: hidden;
    overflow-y: auto;
    display: inline-block;
    position: fixed;
    z-index: 99;
}

.lcdashboard .echarts-for-react text[fill="#2B304F"] {
    font-feature-settings: "tnum" on, "lnum" on;
    letter-spacing: -0.05em;
}

/* .lcdashboard .lc-title {
} */

/* .lcdashboard .lc-segment-title-row { */
/* display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-height: 27px;*/
/* } */

.lcdashboard .tooltip-custom {
    max-width: 300px;
    word-break: break-word;
}

.lcdashboard .text-custom-resize {
    font-size: 5vw;
    word-break: break-word;
}

.lcdashboard .text-custom-resize-baseline {
    font-size: 1.5vw;
    word-break: break-word;
    font-family: "Ubuntu", sans-serif;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 0em;
    text-align: center;
}

.lcdashboard .text-cc {
    font-family: "Ubuntu", sans-serif;
    font-size: 10px;
    font-weight: 400;
    line-height: 12px;
    letter-spacing: 0em;
    text-align: left;
}

.lcdashboard .grid {
    justify-content: stretch;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 1fr;
    grid-gap: 0px;
}

/* .lcdashboard .cell {
    max-height: 90%;
    max-height: 50px;
    display: grid;
    grid-column-end: span 1;
    grid-template-rows: 1fr;
    display: grid;
    grid-column-end: span 1;
    grid-template-rows: 1fr;
    grid-row-start: 1;
    grid-row-end: span 1;
}

    .lcdashboard .cell > .fullrow {
        display: grid;
        grid-auto-flow: column;
        grid-column-start: 1;
        grid-column-end: span 12;
        grid-row-start: 1;
        grid-row-end: span 1;
    } */



.lcdashboard .grid-column {
    display: grid;
    flex-direction: column;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 9fr 1fr 1fr;
    grid-column-start: 1;
    grid-column-end: span 1;
    grid-row-end: span 12;
}

.lcdashboard .subtitle-dash {
    font-family: "Ubuntu", sans-serif;
    font-size: 0.75rem;
    letter-spacing: -0.04em;
    text-align: right;
    padding: 0px;
    color: #8b90a3;
}

.lcdashboard .subtitle-dash-bold {
    font-weight: 700;
}

.lcdashboard .projecao-container {
    display: flex;
    flex-direction: column;
    align-self: end;
    min-height: 100%;
    justify-content: space-around;
    min-width: 100%;
}

.lcdashboard .projecao-content {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    min-width: 100%;
    flex-wrap: nowrap;
}

.lcdashboard .projecao-content.r-align {
    justify-content: space-between;
}

.lcdashboard .projecao-content>.icon {
    font-size: 2.2vw;
    font-weight: bold;
    flex-shrink: 0;
}

.lcdashboard .projecao-content>.icon.red {
    color: var(--status-red);
}

.lcdashboard .projecao-content>.icon.green {
    color: var(--status-green);
}

.lcdashboard .projecao-content>.value {
    font-size: 1.6vw;
    font-weight: 400;
    flex-shrink: 0;
    white-space: nowrap;
}

.lcdashboard .projecao-content>.value.red {
    color: var(--status-red);
}

.lcdashboard .projecao-content>.value.green {
    color: var(--status-green);
}

.lcdashboard .otimizacoes-text-number {
    font-size: xx-large;
    display: flex;
}

.lcdashboard .otimizacoes-text {
    font-size: 1.6vw;
    font-weight: normal;
}

.lcdashboard .otimizacoes-symbol {
    color: white;
    font-weight: bold;
    display: flex;
    min-width: 50%;
}


.lcdashboard .alerta-container {
    display: flex;
    flex-direction: column;
}


.lcdashboard .alerta-container .alerta-content {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    display: flex;
    min-width: 100%;
}

.lcdashboard .alerta-container .alerta-content>.icon {
    color: var(--status-red);
    font-size: 2.2vw;
    font-weight: bold;
}


.lcdashboard .alerta-container .alerta-content>.alerta-chart {
    color: var(--status-red);
    font-weight: bold;
    max-width: 75%;
    min-width: 75%;
}

.lcdashboard .comparativo-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

.lcdashboard .comparativo-container.last {
    min-height: 180px;
    transition: transform 0.3s ease-out;
}

.lcdashboard .comparativo-container .comparativo-content {
    min-width: 160px;
    display: flex;
    flex-direction: column;
    flex: 1 1;
    align-items: center;
    justify-content: center;
    width: 50%;
}



.lcdashboard .comparativo-container.last .comparativo-content {
    min-width: 120px;
    width: 50%;
}

.lcdashboard .comparativo-container .comparativo-content .row-title {
    text-align: center;
    color: var(--text-default);
}

.lcdashboard .comparativo-container.last .comparativo-content .row-title {
    font-size: 0.75rem;
}

.lcdashboard .comparativo-container .comparativo-content .row-content {
    position: relative;
    min-height: 140px;
    width: 100%;
}

.lcdashboard .comparativo-container.last .comparativo-content .row-content {
    max-height: 120px;
    height: 120px;
    min-height: 120px;
}


.lcdashboard .comparativo-container .comparativo-content .row-subtitle {
    position: absolute;
    bottom: 35px;
    text-align: center;
    color: var(--color-secondary-green-dark);
    width: 100%;
}

.lcdashboard .comparativo-container.last .comparativo-content .row-subtitle {
    bottom: 33px;
    font-size: 0.75rem;
}

.lcdashboard .comparativo-container .comparativo-content .row-subsubtitle {
    position: absolute;
    bottom: 15px;
    font-family: "Ubuntu", sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: -0.04em;
    text-align: center;
    width: 100%;
    color: var(--text-default);
}

.lcdashboard .comparativo-container.last .comparativo-content .row-subsubtitle {
    bottom: 18px;
    font-size: 0.625rem;
}

.lcdashboard .card-content-body:has(.maiores-consumos-full) {
    justify-content: flex-start;
}



.chart-container-home {
    position: relative;
    left: -12px;
    right: -12px;
    width: calc(100% + 24px) !important;
    height: 100% !important;
}

.consumo-mes {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    gap: 1vw;
}

.consumo-mes .consumo {
    display: flex;
    align-items: center;
    gap: 0.5vh;
}

.consumo-mes .consumo .value {
    color: var(--text-default);
    font-family: "Ubuntu", sans-serif;
    font-size: 4.5vh;
    font-style: normal;
    font-weight: 400;
}

.consumo-mes .consumo .variation {
    padding: 2px 8px;
    border-radius: 4px;
    background: #D35555;
    color: #fff;
    font-family: "Ubuntu", sans-serif;
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
}

.consumo-mes .budget {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.consumo-mes .budget .value {
    color: var(--status-red);
    text-align: right;
    font-family: "Ubuntu", sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.consumo-mes .budget .label {
    color: var(--text-light);
    text-align: right;
    font-family: "Ubuntu", sans-serif;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
    /* 19.2px */
    letter-spacing: -0.48px;
    text-overflow: ellipsis;
    overflow: hidden;
    text-wrap: nowrap;
}

.subtitle-dash-ishome {
    font-size: 1.7vh !important;
    color: #fff !important;
}

/* Big Numbers - Análise de Crescimento - Responsivo */
.growth-bignumber-main {
    font-size: clamp(0.95rem, 2.2vw, 1.4rem);
    font-weight: 700;
    line-height: 1;
}

.growth-bignumber-label {
    font-size: clamp(7px, 1.3vw, 10px);
    color: #888;
    margin-top: 2px;
}

.growth-counter-label {
    font-size: clamp(8px, 1.4vw, 11px);
    color: #666;
}

.growth-counter-value {
    font-size: clamp(0.8rem, 1.6vw, 1rem);
    font-weight: 700;
}

/* Media queries para ajustes finos em diferentes resoluções */
@media (max-width: 768px) {
    .growth-bignumber-main {
        font-size: 1.1rem;
    }

    .growth-bignumber-label {
        font-size: 8px;
    }

    .growth-counter-label {
        font-size: 9px;
    }

    .growth-counter-value {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .growth-bignumber-main {
        font-size: 1rem;
    }

    .growth-bignumber-label {
        font-size: 7px;
    }

    .growth-counter-label {
        font-size: 8px;
    }

    .growth-counter-value {
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .growth-bignumber-main {
        font-size: 0.9rem;
    }

    .growth-bignumber-label {
        font-size: 6px;
    }

    .growth-counter-label {
        font-size: 7px;
    }

    .growth-counter-value {
        font-size: 0.75rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .growth-bignumber-main {
        font-size: 1.3rem;
    }

    .growth-bignumber-label {
        font-size: 9.5px;
    }

    .growth-counter-label {
        font-size: 10.5px;
    }

    .growth-counter-value {
        font-size: 0.95rem;
    }
}

@media (min-width: 1025px) and (max-width: 1440px) {
    .growth-bignumber-main {
        font-size: 1.35rem;
    }

    .growth-bignumber-label {
        font-size: 10px;
    }

    .growth-counter-label {
        font-size: 11px;
    }

    .growth-counter-value {
        font-size: 0.975rem;
    }
}

@media (min-width: 1441px) {
    .growth-bignumber-main {
        font-size: 1.4rem;
    }

    .growth-bignumber-label {
        font-size: 10px;
    }

    .growth-counter-label {
        font-size: 11px;
    }

    .growth-counter-value {
        font-size: 1rem;
    }
}

/* Fix: Impedir que SVG do ECharts intercepte cliques em botoes de paginacao */
.chart-container .echarts-for-react svg {
    pointer-events: none;
}

/* Manter interatividade nos elementos do grafico que precisam de clique */
.chart-container .echarts-for-react svg rect,
.chart-container .echarts-for-react svg path,
.chart-container .echarts-for-react svg text {
    pointer-events: auto;
}
/* Monthly Consumption Card - Estilos baseados no mock */

.monthly-consumption-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%; 
}

/* Seção de KPIs no Topo */
.monthly-consumption-kpi-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
    margin-bottom: 5px;
}

.kpi-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

/* Sempre quebrar header em duas linhas quando exibido na Home */
.card-home .kpi-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.card-home .kpi-main-value-section {
    width: 100%;
    justify-content: space-between;
}

.card-home .kpi-metrics-group {
    width: 100%;
    justify-content: space-between;
}

.kpi-metrics-group {
    display: flex;
    gap: 24px;
    align-items: center;
}

.kpi-metric {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.kpi-metric-label {
    font-size: 10px;
    font-weight: 300;
    color: #6b7280;
    color: var(--text-secondary, #6b7280);
}

.kpi-metric-value {
    font-size: 13px;
    font-weight: 300;
    color: #1f2937;
    color: var(--text-primary, #1f2937);
}

.kpi-metric-value div {
    display: inline;
}

/* Valor Principal e Badge de Variação */
.kpi-main-value-section {
    display: flex;
    align-items: center;
    gap: 2px;
}

.kpi-main-value {
    font-size: 32px;
    font-weight: 300;
    line-height: 1;
}

.kpi-main-value div {
    display: inline;
}

/* Cores condicionais para o valor principal */
.kpi-main-value-section.positive .kpi-main-value {
    color: #2e7d32; /* Verde quando economia */
}

.kpi-main-value-section.negative .kpi-main-value {
    color: #DC291E; /* Vermelho quando aumento */
}

.kpi-variation-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 300;
    line-height: 1;
}

.kpi-variation-badge.positive {
    background-color: rgba(46, 125, 50, 0.1);
    color: #2e7d32;
    border: 1px solid rgba(46, 125, 50, 0.2);
}

.kpi-variation-badge.negative { 
    color: #DC291E;
    border: 1px solid rgba(220, 41, 30, 0.2);
}

.kpi-variation-badge svg {
    width: 12px;
    height: 12px;
}

.kpi-variation-badge .subtitle-dash-bold {
    font-size: 11px;
    font-weight: 300;
}

/* Período */
.kpi-period {
    font-size: 11px;
    font-weight: 300;
    color: #6b7280;
    color: var(--text-secondary, #6b7280);
}

/* Container do Gráfico */
.monthly-consumption-chart-container {
    flex: 1 1;
    display: flex;
    flex-direction: column;
    min-height: 0;     
}

.monthly-consumption-chart-container > div:last-child {
    flex: 1 1;
    min-height: 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .kpi-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .kpi-metrics-group {
        width: 100%;
        justify-content: space-between;
    }

    .kpi-main-value {
        font-size: 20px;
    }

    .monthly-consumption-legend {
        flex-wrap: wrap;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .monthly-consumption-card { 
        gap: 12px;
    }

    .kpi-main-title {
        font-size: 13px;
    }

    .kpi-main-value {
        font-size: 18px;
    }

    .kpi-metrics-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .kpi-metric {
        align-items: flex-start;
    }
}


/* Estilos responsivos para o card de Análise de Crescimento */

/* Container principal do card resumido */
.growth-bignumber-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: clamp(8px, 2vh, 16px);
    gap: clamp(12px, 3vh, 24px);
}

/* Número principal (valor da variação) */
.growth-bignumber-main {
    font-size: clamp(1rem, calc(0.9rem + 1.2vw), 2rem);
    font-weight: 700;
    line-height: 1;
}

/* Label do número principal */
.growth-bignumber-label {
    font-size: clamp(8px, calc(7px + 0.25vw), 12px);
    color: #888;
    margin-top: 4px;
}

/* Container dos contadores */
.growth-counters-container {
    display: flex;
    flex-direction: column;
    gap: clamp(6px, 1.5vh, 12px);
    width: 100%;
    max-width: clamp(130px, 80%, 180px);
}

/* Label dos contadores (Novos, Aumentos, Reduções) */
.growth-counter-label {
    font-size: clamp(9px, calc(8px + 0.15vw), 12px);
    color: #666;
}

/* Valor dos contadores */
.growth-counter-value {
    font-size: clamp(0.9rem, calc(0.85rem + 0.4vw), 1.3rem);
    font-weight: 700;
}

/* Ícones dos contadores */
.growth-counter-icon {
    width: clamp(11px, calc(11px + 0.25vw), 16px);
    height: clamp(11px, calc(11px + 0.25vw), 16px);
}

/* Tabela expandida - Header */
.growth-table-header {
    display: grid;
    grid-template-columns: 100px 1fr 20% 15% 15% 10% 10%;
    background-color: #fafafa;
    border-bottom: 2px solid #e0e0e0;
    padding: 12px 16px;
    font-weight: 600;
    font-size: clamp(11px, calc(10px + 0.2vw), 13px);
}

/* Tabela expandida - Body */
.growth-table-body {
    flex: 1 1;
    overflow: auto;
    max-height: calc(100vh - 300px);
}

/* Tabela expandida - Row */
.growth-table-row {
    display: grid;
    grid-template-columns: 100px 1fr 20% 15% 15% 10% 10%;
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s;
    font-size: clamp(11px, calc(10px + 0.2vw), 13px);
}

.growth-table-row:hover {
    background-color: #f8f9fa;
}

/* Tabela expandida - Footer de paginação */
.growth-table-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-top: 1px solid #e0e0e0;
    background-color: #fafafa;
    font-size: clamp(11px, calc(10px + 0.2vw), 13px);
}

/* Botões de paginação */
.growth-pagination-button {
    padding: 6px 12px;
    border: 1px solid #d0d0d0;
    background-color: white;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: clamp(11px, calc(10px + 0.2vw), 13px);
}

.growth-pagination-button:hover:not(:disabled) {
    background-color: #f0f0f0;
    border-color: #1976d2;
}

.growth-pagination-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Header de estatísticas da tabela expandida */
.growth-stats-header {
    display: flex;
    gap: 16px;
    padding: 12px 16px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    flex-wrap: wrap;
}

.growth-stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.growth-stat-label {
    font-size: clamp(10px, calc(9px + 0.2vw), 11px);
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.growth-stat-value {
    font-size: clamp(1rem, calc(0.9rem + 0.3vw), 1.2rem);
    font-weight: 700;
}

/* Responsividade para telas pequenas */
@media (max-width: 768px) {
    .growth-table-header,
    .growth-table-row {
        grid-template-columns: 80px 1fr 18% 13% 13% 8% 8%;
        padding: 8px 12px;
    }

    .growth-stats-header {
        gap: 12px;
        padding: 10px 12px;
    }

    .growth-table-footer {
        flex-direction: column;
        gap: 8px;
        padding: 10px 12px;
    }
}

/* Responsividade para telas muito pequenas */
@media (max-width: 480px) {
    .growth-table-header,
    .growth-table-row {
        grid-template-columns: 60px 1fr 15% 12% 12% 8% 8%;
        padding: 6px 8px;
        font-size: 9px;
    }

    .growth-bignumber-main {
        font-size: 1.2rem;
    }

    .growth-bignumber-label {
        font-size: 8px;
    }

    .growth-counter-label {
        font-size: 8px;
    }

    .growth-counter-value {
        font-size: 0.85rem;
    }

    .growth-counter-icon {
        width: 11px;
        height: 11px;
    }

    .growth-counters-container {
        max-width: 120px;
        gap: 8px;
    }
}

/* Responsividade para telas extra pequenas (< 360px) */
@media (max-width: 360px) {
    .growth-bignumber-main {
        font-size: 1rem;
    }

    .growth-bignumber-label {
        font-size: 7px;
    }

    .growth-counter-label {
        font-size: 7px;
    }

    .growth-counter-value {
        font-size: 0.8rem;
    }

    .growth-counter-icon {
        width: 10px;
        height: 10px;
    }

    .growth-counters-container {
        max-width: 110px;
        gap: 6px;
    }

    .growth-table-header,
    .growth-table-row {
        font-size: 8px;
        padding: 4px 6px;
    }
}

/* Responsividade para telas Full HD (1080p) */
@media (min-width: 1080px) and (max-width: 1920px) {
    .growth-bignumber-main {
        font-size: 2.5rem;
    }

    .growth-bignumber-label {
        font-size: 13px;
    }

    .growth-counter-value {
        font-size: 1.4rem;
    }

    .growth-counter-label {
        font-size: 13px;
    }

    .growth-counters-container {
        gap: 14px;
        max-width: 200px;
    }
}


.view-manager-panel {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 16px;
    gap: 16px;
}

.view-manager-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e0e0e0;
    border-bottom: 1px solid var(--color-border, #e0e0e0);
}

.view-manager-header .ppdropdown {
    flex: 1 1;
    margin-bottom: 0;
}

.view-manager-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    color: var(--color-text-primary, #333);
}

/* Formulário de criação/edição */
.view-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    background-color: #f5f5f5;
    background-color: var(--color-background-secondary, #f5f5f5);
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    border: 1px solid var(--color-border, #e0e0e0);
}

.view-form-header h4 {
    margin: 0 0 8px 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    color: var(--color-text-primary, #333);
}

.view-form-actions {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.view-form-actions button {
    flex: 1 1;
    height: 32px !important;
    min-width: 80px !important;
    padding: 0.25rem 0.8rem !important;
    font-size: 13px !important;
}

/* Lista de views */
.view-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
    flex: 1 1;
    max-height: calc(100vh - 280px);
}

/* Quando o formulário de criação está aberto, reduz a altura da lista */
.view-list.view-list-with-form {
    max-height: calc(100vh - 550px);
}

.view-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
    text-align: center;
    color: #666;
    color: var(--color-text-secondary, #666);
}

.view-empty-state p {
    margin: 4px 0;
}

.view-empty-hint {
    font-size: 12px;
    color: #999;
    color: var(--color-text-tertiary, #999);
}

/* Item de view */
.view-item {
    display: flex;
    flex-direction: column;
    padding: 12px;
    background-color: #fff;
    background-color: var(--color-background, #fff);
    border: 1px solid #e0e0e0;
    border: 1px solid var(--color-border, #e0e0e0);
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.view-item:hover {
    border-color: #1976d2;
    border-color: var(--color-primary, #1976d2);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.view-item.active {
    border-color: #C9FF46;
    border-color: var(--color-secondary-lime, #C9FF46);
    background-color: #f0f9ff;
    background-color: var(--color-background-active, #f0f9ff);
}

.view-item-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1 1;
}

.view-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.view-item-header h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    color: var(--color-text-primary, #333);
    flex: 1 1;
}

.view-default-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    background-color: #C9FF46;
    background-color: var(--color-secondary-lime, #C9FF46);
    color: #333;
    color: var(--color-text-primary, #333);
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

.view-description {
    margin: 0;
    font-size: 12px;
    color: #666;
    color: var(--color-text-secondary, #666);
    line-height: 1.4;
}

.view-metadata {
    display: flex;
    gap: 12px;
    font-size: 11px;
    color: #999;
    color: var(--color-text-tertiary, #999);
}

.view-date {
    display: flex;
    align-items: center;
    gap: 4px;
}

.view-config-summary {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    background-color: #f5f5f5;
    background-color: var(--color-background-secondary, #f5f5f5);
    border-radius: 4px;
    font-size: 11px;
    color: #666;
    color: var(--color-text-secondary, #666);
}

.view-config-summary span {
    display: block;
}

/* Toggle de auto-salvar */
.view-autosave-toggle {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #e0e0e0;
    border-top: 1px solid var(--color-border, #e0e0e0);
}

.view-autosave-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 12px;
    color: #666;
    color: var(--color-text-secondary, #666);
    -webkit-user-select: none;
            user-select: none;
}

.view-autosave-checkbox {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #C9FF46;
    accent-color: var(--color-secondary-lime, #C9FF46);
}

.view-autosave-text {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.view-item-actions {
    display: flex;
    gap: 8px;
    padding-top: 8px;
    border-top: 1px solid #e0e0e0;
    border-top: 1px solid var(--color-border, #e0e0e0);
    margin-top: 8px;
}

/* Formulário de edição inline */
.view-edit-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.view-edit-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

/* Responsividade */
@media (max-width: 768px) {
    .view-manager-panel {
        padding: 12px;
    }

    .view-item {
        padding: 10px;
    }

    .view-item-header h4 {
        font-size: 13px;
    }

    .view-description {
        font-size: 11px;
    }
}

/* Estilos para loading de view */
.view-item {
    position: relative;
}

.view-item.loading {
    pointer-events: none;
    opacity: 0.7;
}

.view-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 10;
    border-radius: 8px;
    font-size: 12px;
    color: #1976d2;
    color: var(--color-primary, #1976d2);
    font-weight: 500;
}

.view-loading-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid #e0e0e0;
    border: 3px solid var(--color-border, #e0e0e0);
    border-top-color: #1976d2;
    border-top-color: var(--color-primary, #1976d2);
    border-radius: 50%;
    animation: view-spinner-rotate 0.8s linear infinite;
}

@keyframes view-spinner-rotate {
    to {
        transform: rotate(360deg);
    }
}

.operation-queue-indicator {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-family: var(--font-family, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif);
}

.queue-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 8px;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.queue-status.processing {
    background: #EFF6FF;
    border: 1px solid #3B82F6;
    color: #1E40AF;
}

.queue-status.pending {
    background: #FEF3C7;
    border: 1px solid #F59E0B;
    color: #92400E;
}

.queue-status.failed {
    background: #FEE2E2;
    border: 1px solid #EF4444;
    color: #991B1B;
}

.queue-status.success {
    background: #D1FAE5;
    border: 1px solid #10B981;
    color: #065F46;
    animation: fadeOut 2s ease-in-out 1s forwards;
}

.queue-status .icon {
    font-size: 18px;
    flex-shrink: 0;
}

.queue-status .text {
    white-space: nowrap;
}

.queue-status.processing .icon.spinning {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}


/* Container principal do drill-down */
.budget-drilldown-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #F8F9FD 0%, #FAFBFF 100%);
    font-family: "Ubuntu", sans-serif;
    font-weight: 300;
}

/* Header com estatísticas */
.drilldown-header {
    padding: 0.25rem 0.5rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FD 100%);
    border-bottom: 1px solid #E2E6F3;
    box-shadow: 0 1px 3px rgba(46, 25, 86, 0.03);
}

.innerLCGrid {
    display: contents;
}
.header-stats {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.25rem;
    align-items: stretch;
}

.stat-card {
    background: #FFFFFF;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    border: 1px solid #E2E6F3;
    box-shadow: 0 1px 3px rgba(46, 25, 86, 0.05);
    transition: all 0.2s ease;
    min-height: 32px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.3rem;
    justify-content: space-between;
    flex: 1 1;
    min-width: 0;
    white-space: nowrap;
}

.stat-card:hover {
    box-shadow: 0 1px 4px rgba(46, 25, 86, 0.08);
    border-color: #471FCC;
}

.stat-card.alert {
    background: linear-gradient(90deg, #FFF5F5 0%, #FFFFFF 100%);
    border-color: #FFE0E0;
}

.stat-card.alert:hover {
    border-color: #DC291E;
}

.stat-card.growth {
    background: linear-gradient(90deg, #F0FFF4 0%, #FFFFFF 100%);
    border-color: #D4F4DD;
}

.stat-card.growth:hover {
    border-color: #38A169;
}

.stat-card.highlight {
    background: linear-gradient(90deg, #F0F4FF 0%, #FFFFFF 100%);
    border-color: #D4E0FF;
}

.stat-card.highlight:hover {
    border-color: #471FCC;
}

.stat-label {
    font-size: 0.55rem;
    font-weight: 300;
    color: #6B6F7D;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.stat-value {
    font-size: 0.85rem;
    font-weight: 300;
    color: #2E1956;
    line-height: 1.1;
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    margin-left: auto;
}

.stat-value-small {
    font-size: 0.7rem;
    font-weight: 300;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 120px;
}

.stat-count {
    font-size: 0.65rem;
    font-weight: 300;
    color: #471FCC;
}

.stat-card.alert .stat-value {
    color: #DC291E;
}

.stat-card.growth .stat-value {
    color: #38A169;
}

.stat-card.highlight .stat-value {
    color: #471FCC;
}

/* Barra de ferramentas */
.drilldown-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    gap: 1rem;
    background: #FFFFFF;
    border-bottom: 1px solid #E2E6F3;
}

/* Campo de busca */
.search-box {
    position: relative;
    flex: 1 1;
    max-width: 350px;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 12px;
    color: #8B90A3;
    pointer-events: none;
    z-index: 1;
}

.search-input {
    width: 100%;
    padding: 0.625rem 2.5rem 0.625rem 2.75rem;
    border: 2px solid #E2E6F3;
    border-radius: 8px;
    font-size: 0.875rem;
    font-family: "Ubuntu", sans-serif;
    transition: all 0.3s ease;
    background: #FAFBFF;
    color: #2E1956;
    font-weight: 300;
}

.search-input:hover {
    border-color: #C5CAE0;
    background: #FFFFFF;
}

.search-input:focus {
    outline: none;
    border-color: #471FCC;
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(71, 31, 204, 0.1);
}

.search-input::placeholder {
    color: #8B90A3;
    font-weight: 400;
}

.clear-search {
    position: absolute;
    right: 8px;
    background: #E2E6F3;
    border: none;
    padding: 6px;
    cursor: pointer;
    color: #6B6F7D;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.clear-search:hover {
    background: #471FCC;
    color: #FFFFFF;
    transform: scale(1.05);
}

/* Info da toolbar */
.toolbar-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.results-count {
    font-size: 0.875rem;
    color: #2E1956;
    white-space: nowrap;
    font-weight: 300;
    padding: 0.5rem 1rem;
    background: #F0F2F8;
    border-radius: 6px;
    border: 1px solid #E2E6F3;
}



/* Wrapper da tabela */
.budget-detail-table-wrapper {
    width: 100%;
    overflow-x: auto;
    overflow-y: auto;
    flex: 1 1;
    margin: 0 1.25rem 1.25rem 1.25rem;
    border-radius: 10px;
    background: #FFFFFF;
    border: 1px solid #E2E6F3;
    box-shadow: 0 2px 8px rgba(46, 25, 86, 0.06);
}

/* Tabela */
.budget-detail-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    font-size: 0.875rem;
    font-family: "Ubuntu", sans-serif;
    table-layout: fixed;
}

/* Larguras específicas das colunas */
.budget-detail-table thead th:nth-child(1) {
    width: 25%;
    min-width: 200px;
}

.budget-detail-table thead th:nth-child(2) {
    width: 10%;
    min-width: 100px;
}

.budget-detail-table thead th:nth-child(3) {
    width: 12%;
    min-width: 110px;
}

.budget-detail-table thead th:nth-child(4) {
    width: 13%;
    min-width: 120px;
}

.budget-detail-table thead th:nth-child(5) {
    width: 15%;
    min-width: 130px;
}

.budget-detail-table thead th:nth-child(6) {
    width: 15%;
    min-width: 130px;
}

.budget-detail-table thead th:nth-child(7) {
    width: 10%;
    min-width: 100px;
}

/* Cabeçalho da tabela */
.budget-detail-table thead {
    position: sticky;
    top: 0;
    z-index: 10;
    background: linear-gradient(135deg, #F8F9FD 0%, #FFFFFF 100%);
}

.budget-detail-table thead th {
    padding: 0.875rem 1rem;
    text-align: left;
    font-weight: 300;
    font-size: 0.6875rem;
    color: #2E1956;
    border-bottom: 2px solid #E2E6F3;
    white-space: nowrap;
    font-family: "Ubuntu", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    background: linear-gradient(135deg, #F8F9FD 0%, #FFFFFF 100%);
    overflow: hidden;
    text-overflow: ellipsis;
}

.budget-detail-table thead th.sortable {
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    transition: all 0.2s ease;
    position: relative;
}

.budget-detail-table thead th.sortable:hover {
    background: linear-gradient(135deg, #E8EAFF 0%, #F0F2F8 100%);
    color: #471FCC;
}

.budget-detail-table thead th.sortable:active {
    transform: scale(0.98);
}

.budget-detail-table thead th.text-center {
    text-align: center;
}

.budget-detail-table thead th.text-right {
    text-align: right;
}

/* Corpo da tabela */
.budget-detail-table tbody tr {
    border-bottom: 1px solid #F0F2F8;
    transition: all 0.2s ease;
}

.budget-detail-table tbody tr.even-row {
    background: #FAFBFF;
}

.budget-detail-table tbody tr.odd-row {
    background: #FFFFFF;
}

.budget-detail-table tbody tr:hover {
    background: linear-gradient(90deg, #F0F2F8 0%, #F8F9FD 100%);
    transform: scale(1.002);
    box-shadow: 0 2px 8px rgba(46, 25, 86, 0.08);
}

.budget-detail-table tbody tr.over-budget {
    background: linear-gradient(90deg, rgba(220, 41, 30, 0.04) 0%, rgba(220, 41, 30, 0.02) 100%);
    border-left: 3px solid #DC291E;
}

.budget-detail-table tbody tr.over-budget:hover {
    background: linear-gradient(90deg, rgba(220, 41, 30, 0.08) 0%, rgba(220, 41, 30, 0.04) 100%);
}

.budget-detail-table tbody td {
    padding: 0.875rem 1rem;
    color: #2E1956;
    font-size: 0.8125rem;
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
    overflow: hidden;
    text-overflow: ellipsis;
}

.budget-detail-table tbody td.text-center {
    text-align: center;
}

.budget-detail-table tbody td.text-right {
    text-align: right;
}

/* Célula de nome com ranking */
.cell-name {
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-size: 0.8125rem;
    color: #2E1956;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    overflow: hidden;
}

.rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 22px;
    padding: 0 0.4rem;
    background: linear-gradient(135deg, #F0F2F8 0%, #E2E6F3 100%);
    color: #6B6F7D;
    font-family: "Ubuntu", sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 5px;
    border: 1px solid #E2E6F3;
    flex-shrink: 0;
}

.rank-badge.rank-top {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #FFFFFF;
    border-color: #FFA500;
    box-shadow: 0 2px 6px rgba(255, 165, 0, 0.3);
}

.name-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-size: 0.8125rem;
    color: #2E1956;
    flex: 1 1;
    min-width: 0;
}

/* Badge de novos recursos */
.resource-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Ubuntu", sans-serif;
    font-size: 0.8125rem;
    font-weight: 400;
}

.new-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 24px;
    padding: 0 0.5rem;
    background: linear-gradient(135deg, #471FCC 0%, #6B3FE8 100%);
    color: #FFFFFF;
    font-family: "Ubuntu", sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(71, 31, 204, 0.3);
}

/* Indicador de tendência - Design Profissional */
.trend-indicator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 0.3rem 0.625rem;
    border-radius: 5px;
    font-family: "Ubuntu", sans-serif;
    font-weight: 500;
    font-size: 0.8125rem;
    transition: all 0.2s ease;
    min-width: 70px;
}

.trend-indicator.growth {
    background: linear-gradient(135deg, rgba(220, 41, 30, 0.1) 0%, rgba(220, 41, 30, 0.05) 100%);
    color: #DC291E;
    border: 1px solid rgba(220, 41, 30, 0.2);
}

.trend-indicator.growth .trend-icon {
    color: #DC291E;
}

.trend-indicator.decline {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.1) 0%, rgba(46, 125, 50, 0.05) 100%);
    color: #2e7d32;
    border: 1px solid rgba(46, 125, 50, 0.2);
}

.trend-indicator.decline .trend-icon {
    color: #2e7d32;
}

.trend-indicator.neutral {
    background: #F0F2F8;
    color: #6B6F7D;
    border: 1px solid #E2E6F3;
}

.trend-percent {
    font-family: "Ubuntu", sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
}

/* Valores de variação */
.variation-value {
    font-family: "Ubuntu", sans-serif;
    font-weight: 500;
    font-size: 0.8125rem;
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
}

.variation-value.negative {
    color: #DC291E;
}

.variation-value.positive {
    color: #2e7d32;
}

/* Valores de custo e orçamento */
.cost-value {
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    color: #2E1956;
    font-size: 0.8125rem;
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
}

.budget-value {
    font-family: "Ubuntu", sans-serif;
    color: #6B6F7D;
    font-weight: 400;
    font-size: 0.8125rem;
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
}

.text-muted {
    font-family: "Ubuntu", sans-serif;
    color: #8B90A3;
    font-weight: 400;
    font-size: 0.8125rem;
}

/* Indicador de uso de orçamento - Design Profissional */
.budget-usage-indicator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 0.3rem 0.625rem;
    border-radius: 5px;
    font-family: "Ubuntu", sans-serif;
    font-weight: 500;
    font-size: 0.8125rem;
    transition: all 0.2s ease;
    min-width: 70px;
}

.budget-usage-indicator.good {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.1) 0%, rgba(46, 125, 50, 0.05) 100%);
    color: #2e7d32;
    border: 1px solid rgba(46, 125, 50, 0.2);
}

.budget-usage-indicator.good .status-icon {
    color: #2e7d32;
}

.budget-usage-indicator.normal {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 193, 7, 0.05) 100%);
    color: #F57C00;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.budget-usage-indicator.normal .status-icon {
    color: #F57C00;
}

.budget-usage-indicator.warning {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.1) 0%, rgba(255, 152, 0, 0.05) 100%);
    color: #E65100;
    border: 1px solid rgba(255, 152, 0, 0.2);
}

.budget-usage-indicator.warning .status-icon {
    color: #E65100;
}

.budget-usage-indicator.over-budget {
    background: linear-gradient(135deg, rgba(220, 41, 30, 0.15) 0%, rgba(220, 41, 30, 0.08) 100%);
    color: #DC291E;
    border: 1px solid rgba(220, 41, 30, 0.3);
    animation: pulse-alert 2s ease-in-out infinite;
}

.budget-usage-indicator.over-budget .status-icon {
    color: #DC291E;
}

@keyframes pulse-alert {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(220, 41, 30, 0.4);
    }
    50% {
        box-shadow: 0 0 0 4px rgba(220, 41, 30, 0);
    }
}

.usage-percent {
    font-family: "Ubuntu", sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
}

/* Responsividade */
@media (max-width: 1400px) {
    .header-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .budget-detail-table {
        font-size: 0.8125rem;
        table-layout: auto;
    }

    .budget-detail-table thead th,
    .budget-detail-table tbody td {
        padding: 0.75rem 0.875rem;
    }

    .budget-detail-table thead th:nth-child(1) {
        min-width: 180px;
    }
}

@media (max-width: 768px) {
    .drilldown-header {
        padding: 1rem;
    }

    .header-stats {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }

    .stat-card {
        padding: 0.875rem 1rem;
        min-height: 75px;
    }

    .stat-label {
        font-size: 0.625rem;
        font-weight: 300;
    }

    .stat-value {
        font-size: 1.5rem;
        font-weight: 300;
    }

    .drilldown-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 0.875rem;
        padding: 1rem;
    }

    .search-box {
        max-width: 100%;
    }

    .toolbar-info {
        justify-content: center;
    }

    .results-count {
        text-align: center;
        width: 100%;
        font-weight: 300;
    }

    .budget-detail-table-wrapper {
        margin: 0 1rem 1rem 1rem;
    }

    .budget-detail-table {
        font-size: 0.75rem;
        table-layout: auto;
    }

    .budget-detail-table thead th,
    .budget-detail-table tbody td {
        padding: 0.625rem 0.5rem;
    }

    .budget-detail-table thead th {
        font-size: 0.625rem;
        font-weight: 300;
    }

    .rank-badge {
        min-width: 26px;
        height: 20px;
        font-size: 0.625rem;
        padding: 0 0.3rem;
        font-weight: 300;
    }

    .trend-indicator,
    .budget-usage-indicator {
        font-size: 0.6875rem;
        padding: 0.25rem 0.5rem;
        min-width: 60px;
        font-weight: 300;
    }

    .cost-value,
    .budget-value,
    .variation-value {
        font-size: 0.75rem;
        font-weight: 300;
    }
}

/* Scrollbar customizada */
.budget-detail-table-wrapper::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

.budget-detail-table-wrapper::-webkit-scrollbar-track {
    background: #F0F2F8;
    border-radius: 6px;
}

.budget-detail-table-wrapper::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #C5CAE0 0%, #8B90A3 100%);
    border-radius: 6px;
    border: 2px solid #F0F2F8;
}

.budget-detail-table-wrapper::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #471FCC 0%, #6B3FE8 100%);
}

/* ===== NAVEGAÇÃO E BOTÕES ===== */
.header-navigation {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.back-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #FFFFFF;
    border: 1px solid #E2E6F3;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 300;
    color: #495057;
    transition: all 0.2s ease;
}

.back-button:hover {
    background: #F8F9FD;
    border-color: #471FCC;
    transform: translateX(-2px);
}

.detail-title {
    font-size: 1.25rem;
    font-weight: 300;
    color: #2E1956;
    margin: 0;
}

/* ===== TOOLBAR ACTIONS ===== */
.toolbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.results-count {
    font-size: 0.875rem;
    color: #6B6F7D;
    font-weight: 300;
}

/* ===== FILTROS ===== */
.filters-panel {
    padding: 1rem 1.25rem;
    background: #F8F9FD;
    border-bottom: 1px solid #E2E6F3;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.filter-label {
    font-size: 0.875rem;
    font-weight: 300;
    color: #2E1956;
    white-space: nowrap;
}

.filter-options {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-button {
    padding: 0.5rem 1rem;
    background: #FFFFFF;
    border: 1px solid #E2E6F3;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 300;
    color: #495057;
    transition: all 0.2s ease;
}

.filter-button:hover {
    background: #F8F9FD;
    border-color: #471FCC;
}

.filter-button.active {
    background: #471FCC;
    border-color: #471FCC;
    color: #FFFFFF;
}

/* ===== SELETOR DE COLUNAS ===== */
.column-selector-panel {
    padding: 1rem 1.25rem;
    background: #F8F9FD;
    border-bottom: 1px solid #E2E6F3;
}

.column-selector-title {
    font-size: 0.875rem;
    font-weight: 300;
    color: #2E1956;
    margin-bottom: 0.75rem;
}

.column-selector-options {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* ===== COLUNA DE AÇÕES ===== */
.actions-column {
    width: 120px;
    min-width: 120px;
}

.actions-cell {
    padding: 0.5rem !important;
}

.details-button {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #471FCC 0%, #6B3FE8 100%);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8125rem;
    font-weight: 300;
    color: #FFFFFF;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.details-button:hover {
    background: linear-gradient(135deg, #3A18A8 0%, #5632C4 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(71, 31, 204, 0.3);
}

/* ===== DETALHES DO CENTRO DE CUSTO ===== */
.cost-center-details {
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.details-summary {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.375rem;
    margin-bottom: 0.5rem;
    flex-shrink: 0;
}

.summary-card {
    background: #FFFFFF;
    padding: 0.375rem 0.5rem;
    border-radius: 4px;
    border: 1px solid #E2E6F3;
    box-shadow: 0 1px 2px rgba(46, 25, 86, 0.04);
    flex: 1 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.summary-label {
    font-size: 0.45rem;
    font-weight: 300;
    color: #6B6F7D;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    margin-bottom: 0.15rem;
    white-space: nowrap;
}

.summary-value {
    font-size: 0.75rem;
    font-weight: 300;
    color: #2E1956;
    white-space: nowrap;
}

.details-info {
    background: #F8F9FD;
    padding: 0.375rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.375rem;
    flex-shrink: 0;
}

.details-info p {
    margin: 0.15rem 0;
    font-size: 0.65rem;
    color: #495057;
}

.status-over {
    color: #DC291E;
    font-weight: 300;
}

.status-ok {
    color: #28A745;
    font-weight: 300;
}

.details-note {
    padding: 1rem;
    background: #FFF9E6;
    border-left: 4px solid #FFC107;
    border-radius: 6px;
}

.details-note p {
    margin: 0;
    font-size: 0.875rem;
    color: #856404;
    font-style: italic;
}

/* ===== SEÇÃO DE RECURSOS ===== */
.resources-section {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 0;
}

.resources-title {
    font-size: 0.75rem;
    font-weight: 300;
    color: #2E1956;
    margin-bottom: 0.375rem;
    padding-bottom: 0.375rem;
    border-bottom: 2px solid #E2E6F3;
    flex-shrink: 0;
}

.resources-table-wrapper {
    flex: 1 1 auto;
    overflow-y: auto;
    overflow-x: auto;
    border-radius: 4px;
    border: 1px solid #E2E6F3;
    background: #FFFFFF;
    max-height: calc(100vh - 280px);
    position: relative;
}

.resources-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.resources-table thead {
    background: linear-gradient(135deg, #F8F9FD 0%, #FFFFFF 100%);
    border-bottom: 2px solid #E2E6F3;
    position: sticky;
    top: 0;
    z-index: 10;
}

.resources-table th {
    padding: 0.5rem 0.75rem;
    text-align: left;
    font-weight: 300;
    color: #2E1956;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    background: linear-gradient(135deg, #F8F9FD 0%, #FFFFFF 100%);
}

.resources-table tbody tr {
    border-bottom: 1px solid #F0F2F8;
    transition: background-color 0.2s ease;
}

.resources-table tbody tr:hover {
    background: linear-gradient(135deg, #F8F9FD 0%, #FAFBFF 100%);
}

.resources-table tbody tr:last-child {
    border-bottom: none;
}

.resources-table td {
    padding: 0.5rem 0.75rem;
    color: #495057;
    font-size: 0.75rem;
}

.resource-name {
    font-weight: 300;
    color: #2E1956;
    display: block;
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.resource-cost {
    font-weight: 300;
    color: #471FCC;
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
}

.no-resources {
    padding: 2rem;
    text-align: center;
    background: #F8F9FD;
    border-radius: 10px;
    border: 1px dashed #E2E6F3;
}

.no-resources p {
    margin: 0;
    color: #6B6F7D;
    font-size: 0.9375rem;
}



/* ===== CARDS CLICAVEIS COM FILTRO ===== */
.card-filter-clickable {
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 4px;
    margin: -4px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-filter-clickable:hover {
    transform: scale(1.02);
}

/* ===== ESTILOS DE SELEÇÃO DE CARDS - Padrão card-fade/card-active ===== */

/* Card selecionado/ativo - destaque total */
.budget-drilldown-card-active {
    opacity: 1;
    transform: scale(1.02);
    box-shadow: 4px 4px 18px 0px rgba(58, 79, 135, 0.25);
    transition: all 0.3s ease;
}

.budget-drilldown-card-active .card-filter-clickable {
    background: rgba(46, 25, 86, 0.08);
}

/* Indicador visual "balão" para card ativo */
.budget-drilldown-card-active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background-color: #fff;
    box-shadow: 2px 2px 4px rgba(58, 79, 135, 0.15);
    z-index: 1;
}

/* Cards não selecionados - fade/dim */
.budget-drilldown-card-fade {
    opacity: 0.35;
    transition: all 0.3s ease;
}

.budget-drilldown-card-fade:hover {
    opacity: 0.6;
}

/* Estado neutro - nenhum filtro ativo */
.budget-drilldown-card-neutral {
    opacity: 1;
    transition: all 0.3s ease;
}

.budget-drilldown-card-neutral:hover {
    box-shadow: 4px 4px 18px 0px rgba(58, 79, 135, 0.15);
}
/* Estilos para o modulo de gestao de Tags FinOps */

.TagsAdmin_container__AiHn1 {
    padding: 1.5rem;
    background-color: #FAFBFF;
    background-color: var(--background-lightest, #FAFBFF);
    min-height: 100%;
}

.TagsAdmin_header__n1oxZ {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.TagsAdmin_title__ShvP3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2E1956;
    color: var(--text-default, #2E1956);
    margin: 0;
}

.TagsAdmin_headerActions__MiYOG {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

/* Filtros */
.TagsAdmin_filtersContainer__OF1GS {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    align-items: flex-end;
}

.TagsAdmin_searchInput__Mjqrr {
    flex: 1 1;
    min-width: 250px;
    max-width: 400px;
}

.TagsAdmin_filterSelect__HRtBC {
    min-width: 150px;
}



/* Badges de nivel e prioridade */
.TagsAdmin_badge__kCeOm {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.625rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
}

.TagsAdmin_badgeMandatory__4tpZ4 {
    background-color: #FDECEA;
    color: #D32F2F;
}

.TagsAdmin_badgeRecommended__HlIOy {
    background-color: #FFF3E0;
    color: #E65100;
}

.TagsAdmin_badgeOptional__TDfYM {
    background-color: #E8F5E9;
    color: #2E7D32;
}

.TagsAdmin_badgeHigh__DpdCa {
    background-color: #FFEBEE;
    color: #C62828;
}

.TagsAdmin_badgeMedium__r5W2y {
    background-color: #FFF8E1;
    color: #F9A825;
}

.TagsAdmin_badgeLow__J\+0cX {
    background-color: #E3F2FD;
    color: #1565C0;
}

.TagsAdmin_badgeActive__kysNG {
    background-color: #E8F5E9;
    color: #2E7D32;
}

.TagsAdmin_badgeInactive__1lBtA {
    background-color: #ECEFF1;
    color: #607D8B;
}



/* Formulario */
.TagsAdmin_formContainer__tkeNk {
    padding: 1.5rem;
}

.TagsAdmin_formSection__BSz4U {
    margin-bottom: 1.5rem;
}

.TagsAdmin_formSectionTitle__iZXaK {
    font-size: 1rem;
    font-weight: 600;
    color: #2E1956;
    color: var(--text-default, #2E1956);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #E2E6F3;
    border-bottom: 1px solid var(--background-light, #E2E6F3);
}

.TagsAdmin_formRow__9CTml {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.TagsAdmin_formField__W-CsX {
    flex: 1 1;
    min-width: 200px;
}

.TagsAdmin_formFieldFull__S4q1Y {
    width: 100%;
}

.TagsAdmin_formLabel__b06t8 {
    display: block;
    margin-bottom: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #2E1956;
    color: var(--text-default, #2E1956);
}

.TagsAdmin_formLabelRequired__DFjEz::after {
    content: ' *';
    color: #D32F2F;
}

.TagsAdmin_formInput__yvBm- {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 1px solid #E2E6F3;
    border: 1px solid var(--background-light, #E2E6F3);
    border-radius: 4px;
    font-size: 0.875rem;
    color: #2E1956;
    color: var(--text-default, #2E1956);
    background-color: #FFFFFF;
    background-color: var(--background-white, #FFFFFF);
    transition: border-color 0.2s ease;
}

.TagsAdmin_formInput__yvBm-:focus {
    outline: none;
    border-color: #471FCC;
    border-color: var(--color-primary-blue, #471FCC);
    box-shadow: 0 0 0 2px rgba(71, 31, 204, 0.1);
}

.TagsAdmin_formInput__yvBm-:disabled {
    background-color: #E2E6F3;
    background-color: var(--background-light, #E2E6F3);
    cursor: not-allowed;
}

.TagsAdmin_formInputError__zeDUb {
    border-color: #D32F2F;
}

.TagsAdmin_formError__K6u0h {
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: #D32F2F;
}

.TagsAdmin_formTextarea__B56vT {
    min-height: 80px;
    resize: vertical;
}

.TagsAdmin_formSelect__sKMHi {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%2712%27 viewBox=%270 0 12 12%27%3E%3Cpath fill=%27%236B6F7D%27 d=%27M6 8L1 3h10z%27/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2rem;
}

/* Toggle/Checkbox */
.TagsAdmin_formCheckbox__TbjXJ {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.TagsAdmin_formCheckbox__TbjXJ input[type="checkbox"] {
    width: 1.125rem;
    height: 1.125rem;
    cursor: pointer;
}

/* Lista de valores permitidos */
.TagsAdmin_valuesContainer__UX8qe {
    background: #FAFBFF;
    background: var(--background-lightest, #FAFBFF);
    border: 1px solid #E2E6F3;
    border: 1px solid var(--background-light, #E2E6F3);
    border-radius: 4px;
    padding: 1rem;
}

.TagsAdmin_valuesList__RgOxR {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.TagsAdmin_valueTag__b88Qk {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.5rem;
    background: #FFFFFF;
    background: var(--background-white, #FFFFFF);
    border: 1px solid #E2E6F3;
    border: 1px solid var(--background-light, #E2E6F3);
    border-radius: 4px;
    font-size: 0.8125rem;
}

.TagsAdmin_valueTagRemove__gSi\+s {
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #8B90A3;
    color: var(--text-light, #8B90A3);
    font-size: 1rem;
    line-height: 1;
}

.TagsAdmin_valueTagRemove__gSi\+s:hover {
    color: #D32F2F;
}

.TagsAdmin_addValueRow__rOy74 {
    display: flex;
    gap: 0.5rem;
}

.TagsAdmin_addValueInput__pKBWk {
    flex: 1 1;
}

/* Mapeamento de provedores */
.TagsAdmin_providerMappings__QQRm2 {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.TagsAdmin_providerRow__9Zp46 {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.75rem;
    background: #FAFBFF;
    background: var(--background-lightest, #FAFBFF);
    border: 1px solid #E2E6F3;
    border: 1px solid var(--background-light, #E2E6F3);
    border-radius: 4px;
}

.TagsAdmin_providerSelect__3q139 {
    width: 150px;
}

.TagsAdmin_providerInput__o5Oaf {
    flex: 1 1;
}

.TagsAdmin_providerRemove__PnlYO {
    padding: 0.375rem;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #8B90A3;
    color: var(--text-light, #8B90A3);
}

.TagsAdmin_providerRemove__PnlYO:hover {
    color: #D32F2F;
}

.TagsAdmin_providerInfo__H5IBt {
    font-size: 0.75rem;
    color: #8B90A3;
    color: var(--text-light, #8B90A3);
    margin-top: 0.25rem;
}

/* Botoes */
.TagsAdmin_button__pjq3S {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    border: none;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.TagsAdmin_button__pjq3S:focus {
    outline: 2px solid #471FCC;
    outline: 2px solid var(--color-primary-blue, #471FCC);
    outline-offset: 2px;
}

.TagsAdmin_button__pjq3S:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.TagsAdmin_buttonPrimary__BhnWq {
    background-color: #471FCC;
    background-color: var(--color-primary-blue, #471FCC);
    color: white;
}

.TagsAdmin_buttonPrimary__BhnWq:hover:not(:disabled) {
    background-color: #2E1956;
    background-color: var(--color-primary-purple-dark, #2E1956);
}

.TagsAdmin_buttonSecondary__Tv-sf {
    background-color: #E2E6F3;
    background-color: var(--background-light, #E2E6F3);
    color: #2E1956;
    color: var(--text-default, #2E1956);
}

.TagsAdmin_buttonSecondary__Tv-sf:hover:not(:disabled) {
    background-color: #D1D5E8;
}

.TagsAdmin_buttonDanger__RoJ7- {
    background-color: #D32F2F;
    color: white;
}

.TagsAdmin_buttonDanger__RoJ7-:hover:not(:disabled) {
    background-color: #B71C1C;
}

.TagsAdmin_buttonSmall__NRTZW {
    padding: 0.375rem 0.625rem;
    font-size: 0.8125rem;
}

/* Estado vazio */
.TagsAdmin_emptyState__VxWQe {
    text-align: center;
    padding: 3rem;
    color: #6B6F7D;
    color: var(--text-dark, #6B6F7D);
}

.TagsAdmin_emptyStateIcon__SwRrL {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.TagsAdmin_emptyStateText__oOUhK {
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Loading */
.TagsAdmin_loadingContainer__8gcv2 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem;
}

/* Modal de confirmacao */
.TagsAdmin_confirmModal__mtJwT {
    text-align: center;
    padding: 1rem;
}

.TagsAdmin_confirmModalText__qjzCa {
    margin-bottom: 1.5rem;
    color: #6B6F7D;
    color: var(--text-dark, #6B6F7D);
}

.TagsAdmin_confirmModalActions__80KXF {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Historico de auditoria */
.TagsAdmin_auditList__vqgLu {
    max-height: 300px;
    overflow-y: auto;
}

.TagsAdmin_auditItem__NTQDN {
    padding: 0.75rem;
    border-bottom: 1px solid #E2E6F3;
    border-bottom: 1px solid var(--background-light, #E2E6F3);
}

.TagsAdmin_auditItem__NTQDN:last-child {
    border-bottom: none;
}

.TagsAdmin_auditTimestamp__KL10e {
    font-size: 0.75rem;
    color: #8B90A3;
    color: var(--text-light, #8B90A3);
}

.TagsAdmin_auditAction__5jyW1 {
    font-weight: 500;
    color: #2E1956;
    color: var(--text-default, #2E1956);
}

.TagsAdmin_auditUser__BafPZ {
    font-size: 0.8125rem;
    color: #6B6F7D;
    color: var(--text-dark, #6B6F7D);
}


.errorField {
    border: 1px solid #f00 !important;
    color:red !important;
    background-color: rgb(255, 215, 215)!important;
}
