

.table-break th,
.table-break td {
    white-space: nowrap;
    overflow: hidden; 
    text-overflow: ellipsis; 
    max-width: 200px; 
    position: relative; 
    vertical-align: top;
    padding: 8px; 
}

.table-responsive {
  
    overflow: visible; 
}

.nome-centralizado {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.aniversario-hoje td {
  background-color: #0dcaf0 !important;
  color: white;
  font-weight: bold;
}

#breadcrumbNav .breadcrumb {
    flex-wrap: nowrap;
}

#breadcrumbNav .breadcrumb-item {
    padding-right: 0.5rem;
}

body {
    
    padding-top: 20px; 
}

#navbarComandos {
    top: 60px; 
}

#breadcrumbNav {
    top: 100px; 
}

/* Em telas menores, o padding-top precisa ser menor, pois as navbars podem se expandir */
@media (max-width: 768px) {
    body {
        padding-top: 110px; /* Ajuste para a altura total em dispositivos móveis */
    }
}
#navbarNav {
  z-index: 1050; /* Valor padrão de z-index de modais no Bootstrap */
}

table.table.table-bordered.table-hover tr.status-azul td,
table.table.table-bordered.table-hover tr.status-vermelho td,
table.table.table-bordered.table-hover tr.status-verde td,
table.table.table-bordered.table-hover tr.status-amarelo td {
    background-color: initial !important; 
    color: initial !important; 
}

table.table.table-bordered.table-hover tr.status-azul td.status-coluna .rounded-pill {
    background-color: #0d6efd !important; 
    color: white !important;
}

table.table.table-bordered.table-hover tr.status-vermelho td.status-coluna .rounded-pill {
    background-color: #dc3545 !important; 
    color: white !important;
}

table.table.table-bordered.table-hover tr.status-verde td.status-coluna .rounded-pill {
    background-color: #198754 !important; 
    color: white !important;
}

table.table.table-bordered.table-hover tr.status-amarelo td.status-coluna .rounded-pill {
    background-color: #ffc107 !important; 
    color: black !important; 
}

table.table.table-bordered.table-hover tr.table-primary td,
table.table.table-bordered.table-hover tr.selecionado td {
    /* Cor que você usa para o destaque. Usei um azul claro padrão do Bootstrap. */
    background-color: #c9e0f3 !important; 
    color: #212529 !important; /* Texto preto para garantir visibilidade */
}

/* 2. Garante que a PÍLULA (rounded-pill) também seja redefinida. 
   Ela deve ter a mesma cor do fundo de destaque para não gerar conflito. */
table.table.table-bordered.table-hover tr.table-primary td .rounded-pill,
table.table.table-bordered.table-hover tr.selecionado td .rounded-pill {
    /* Faz a pílula 'sumir' ou ter a mesma cor do fundo de destaque */
    background-color: #c9e0f3 !important; 
    color: #212529 !important; /* Força o texto para preto */
}

.input-group-text-fixed {
    width: 45px; 
    justify-content: center;
}

/* Controle de Altura - Receita Wavenet */
.container-altura-wave .area-visual {
    width: 100%; 
    height: 300px;
    background: #fdfcfc; 
    border: 1px solid #dee2e6;
    position: relative; 
    display: flex; 
    justify-content: center;
    border-radius: 8px; 
    overflow: hidden; 
}

.container-altura-wave #linhaLimite {
    position: absolute; 
    width: 100%; 
    height: 2px;
    background: #ff0000; 
    left: 0; 
    bottom: 0%;
    z-index: 10; 
    transition: bottom 0.2s ease;
}

.container-altura-wave #peca {
    position: absolute; 
    width: 100px; 
    background: #b0b0b0; 
    border: 2px solid #555;
    bottom: 0; 
    height: 0%; 
    z-index: 5; 
    transition: height 0.2s ease;
    clip-path: polygon(10% 0%, 90% 0%, 100% 15%, 100% 85%, 90% 100%, 10% 100%, 0% 85%, 0% 15%);
}

.container-altura-wave #peca::before {
    content: '';
    position: absolute;
    left: 20%; width: 60%; height: 100%;
    border-left: 1px solid #888; border-right: 1px solid #888;
    background: rgba(0,0,0,0.05);
}

.container-altura-wave .base-maquina {
    position: absolute; bottom: 0; width: 100%; height: 10px;
    /* background: #333; z-index: 4; */
}



/* Escopo Isolado - Penetração Vertical Wavenet (0-100) */
.container-penetracao-wave .area-visual {
    width: 100%;
    max-width: 280px;
    height: 350px;
    background: #fdfcfc;
    border: 1px solid #dee2e6;
    position: relative;
    display: flex;
    align-items: center; 
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 auto;
}

.container-penetracao-wave .arame-circular {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 3px solid #555;
    background: #b0b0b0;
    position: absolute;
    /* Transição suave para escala 0-100 */
    transition: transform 0.2s ease-out, background-color 0.3s;
}

#arameTopo { transform: translateY(-56px); z-index: 1; }
#arameBase { transform: translateY(56px); z-index: 1; }

#fusaoVertical {
    position: absolute;
    width: 0px;
    height: 0px;
    background: radial-gradient(ellipse at center, #fff700 0%, #ff5500 70%, rgba(255, 68, 0, 0) 100%);
    border-radius: 50%;
    z-index: 2;
    opacity: 0;
    filter: blur(5px);
    transition: all 0.2s ease-out;
}