/* Reset simples */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* Layout geral */
body {
  height: 100vh;
  background: #f4f6f8;
}

body h3{
margin-top: 15px;
margin-bottom: 15px;

}

.app {
  display: flex;
    height: 100vh;
}

/* Sidebar */
.sidebar {
  width: 240px;
  background: #132843;
  color: #9097a7;
  padding: 20px;
}

.logo {
  font-size: 20px;
  margin-bottom: 30px;
  text-align: center;
}

/* Menu */
.sidebar ul {
  list-style: none;
}

.sidebar li {
  padding: 12px 10px;
  margin-bottom: 8px;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s;
}

.sidebar li:hover {
  background: #132843;
}

/* Área principal */
.content {
  flex: 1;
  padding: 30px;
  overflow-y: auto;
  

}

.content h1 {
  margin-bottom: 10px;
}

.content p {
  color: #444;
  margin: 5px;
}
.sidebar li.active {
  font-weight: bold;
}

/* visual de boton discharge */
button {
  padding: 8px 14px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  background: #2563eb;
  color: white;
}

button:hover {
  background: #1d4ed8;
}

/* ===============================
   Tabela Planner – Visual moderno table da contagem
   =============================== */

.planner-table {
  width: 50%;
  border-collapse: collapse;
  margin-top: 20px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.planner-table thead {
  background: #1f2933; /* cinza escuro */
  color: #ffffff;
}

.planner-table th,
.planner-table td {
  padding: 6px 8px;
  text-align: center;
}

.planner-table th:first-child,
.planner-table td:first-child {
  text-align: center;
  font-weight: 600;
}

.planner-table tbody tr:nth-child(even) {
  background: #f4f6f8;
}

.planner-table tbody tr:hover {
  background: #e6f0ff;
}

.planner-table tbody tr:last-child {
  background: #e0e7ef;
}

/*.planner-table tbody tr:last-child td {
  border-top: 2px solid #0c4175;
}*/

/* Destaque por área */
.planner-table td:nth-child(2),
.planner-table td:nth-child(3) {
  color: #0b5ed7; /* Deck */
}

.planner-table td:nth-child(4),
.planner-table td:nth-child(5) {
  color: #198754; /* Hold */
}

/* Total geral */
.planner-table td:last-child {
  font-weight: 700;
}
/* Coluna Bay */
.planner-table th:first-child,
.planner-table td:first-child {
  width: 20px;
}

/* Colunas numéricas */
.planner-table th:not(:first-child),
.planner-table td:not(:first-child) {
  width: 20px;
}


/* ===============================
   Mostrargem de audit parte superior mas bonito
   =============================== */

   /* ===============================*/


.audit-box {
  background: #f7f7f7;
  border-left: 4px solid #4caf50;
  padding: 10px 14px;
  margin: 10px 0 16px;
  display: flex;
  gap: 20px;
  font-size: 14px;
  align-items: center;
}

.audit-warning {
  color: #c62828;
  font-weight: bold;
}


/*  para btn togle auditoria   */
.link-button {
  background: none;
  border: none;
  color: #1976d2;
  cursor: pointer;
  font-weight: bold;
  padding: 0;
}

.link-button:hover {
  text-decoration: underline;
}

.audit-pod-box {
  margin-bottom: 16px;
}

.planner-table.small th,
.planner-table.small td {
  padding: 6px 8px;
  font-size: 13px;
}

.row-warning {
  background: #fff3e0;
  font-weight: bold;
}

/* para aba portainer*/

.bay-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.bay-tag {
  background: #e3f2fd;
  border: 1px solid #90caf9;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 13px;
}

/* para aba portainer */

.bay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 8px;
  margin-top: 10px;
  margin-bottom: 20px;
}

/* Base */
.bay-box {
  padding: 10px;
  text-align: center;
  border-radius: 4px;
  border: 1px solid #ccc;
  cursor: pointer;
  font-weight: bold;
  font-size: 13px;
}

.bay-box:hover {
  transform: scale(1.05);
 /* box-shadow: 0 2px 6px rgba(0,0,0,0.15);*/
  background: #e3f2fd;
  border-color: #64b5f6;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.bay-box {
  transition:
    transform 0.1s ease,
    background-color 0.15s ease,
    box-shadow 0.15s ease,
    opacity 0.15s ease;
}

/* Bay de outro portainer (mesma cor, mais clara) */
.bay-faded {
  opacity: 0.35;
  cursor: not-allowed;
}

/*.bay-faded {
  opacity: 0.35;
  pointer-events: none;
}*/

/* Estado */


.bay-disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

/* CORES POR PORTAINER */



.bay-selected {
  background: #1976d2;
  color: white;
}



/* para portainer selecionado ficar melhor*/

.portainer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

.portainer-card {
  border: 4px solid transparent;
  border-radius: 10px;
  /*background-color: rgba(51, 7, 245, 0.075);*/
  border: solid 1px #ccc;
  padding: 12px;
  cursor: pointer;
  transition: 
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.1s ease;
}


.portainer-card.active {
  /*background: rgba(127, 175, 238, 0.25);*/
  background: inherit;
  border: 2px solid;
  
  
}

.portainer-card:hover {
  border-color: #2f80ed; /* azul padrão */
  box-shadow: 0 4px 10px rgba(47, 128, 237, 0.25);
  transform: translateY(-1px);
}


.portainer-card.active:hover {
  border-color: inherit;
  border: 2px solid;
}



.portainer-card.active.portainer-yellow { border-color: #f2c94c; }
.portainer-card.active.portainer-blue   { border-color: #2f80ed; }
.portainer-card.active.portainer-red    { border-color: #eb5757; }
.portainer-card.active.portainer-green  { border-color: #27ae60; }
.portainer-card.active.portainer-purple { border-color: #9b51e0; }
.portainer-card.active.portainer-orange { border-color: #f2994a; }


.portainer-legend {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 20px 0 18px;
  font-size: 13px;
}

.portainer-legend div {
  display: flex;
  align-items: right;
  gap: 6px;
}

.legend-color {
  width: 14px;
  height: 14px;
  border-radius: 4px;
}

.legend-color.yellow { background: #f2c94c; }
.legend-color.blue   { background: #2f80ed; }
.legend-color.red    { background: #eb5757; }
.legend-color.green  { background: #27ae60; }
.legend-color.purple { background: #9b51e0; }
.legend-color.orange { background: #f2994a; }


.portainer-card {
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    border-color 0.15s ease;
}

.portainer-card:hover {
  transform: translateY(-2px);
}

.portainer-card.active {
  transform: translateY(-2px) scale(1.02);
}


.working-bay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(30px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.working-bay-box {
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 510;
  font-size: 14px;

  border-radius: 4px;
  border: 1px solid #ccc;

  background: #f7f9fb;

  cursor: pointer;
  user-select: none;

  transition: 
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.1s ease,
    box-shadow 0.2s ease;
}

/* Hover (clicável) */
.working-bay-box:hover {
  background: #e3f2fd;
  border-color: #64b5f6;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transform: translateY(-1px);
}

/* Selecionado (AMARELO – mantém o seu) */
.working-bay-box.wb-selected {
  background: #fbc02d;
  border-color: #f9a825b9;
  color: #000;
  box-shadow: 0 0 0 2px rgba(249,168,37,0.3);
}

/* Usado por outro working bay */
.working-bay-box.wb-used {
  background: #e0e0e0;
  border-color: #bdbdbd;
  color: #777;
  cursor: not-allowed;
  box-shadow: none;
}

/* Bloqueado (não selecionável) */
.working-bay-box.blocked {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Remove hover quando não clicável */
.working-bay-box.used:hover,
.working-bay-box.blocked:hover {
  background: #e0e0e0;
  border-color: #bdbdbd;
  box-shadow: none;
  transform: none;
}

/* =========================
   WORKING BAYS DEFINIDOS
========================= */

#workingbay-content {
  margin-top: 10px;
}

#workingbay-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Card de Working Bay definido */
.workingbay-item {
  background: #ffffff;
  border-left: 6px solid #fbc02d; /* amarelo padrão */
  border-radius: 6px;

  padding: 10px 14px;

  font-size: 14px;
  font-weight: 600;

  box-shadow: 0 2px 6px rgba(0,0,0,0.08);

  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease;
}

.workingbay-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

/* Texto interno */
.workingbay-item span {
  font-weight: normal;
  color: #555;
}
.workingbay-toggle{

  margin-bottom: 20px;
  margin-top: 20px;
}
hr{

  margin: 20px 20px;
}

/* =========================
   SELECT – PORTAINERS
========================= */

select {
  appearance: none;        /* remove estilo nativo */
  -webkit-appearance: none;
  -moz-appearance: none;

  background-color: #ffffff;
  border: 1.5px solid #d0d7de;
  border-radius: 8px;

  padding: 8px 36px 8px 12px;
  font-size: 14px;
  font-weight: 500;

  cursor: pointer;

  box-shadow: 0 2px 6px rgba(0,0,0,0.08);

  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

/* Hover */
select:hover {
  border-color: #4f8cff;
}

/* Focus (quando clica) */
select:focus {
  outline: none;
  border-color: #4f8cff;
  box-shadow: 0 0 0 3px rgba(79,140,255,0.2);
}

/* Container para a seta */
select {
  background-image: url("data:image/svg+xml;utf8,<svg fill='none' stroke='%23666' stroke-width='2' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
}

/* Label do select */
label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}
.select-group {
  display: flex;
  flex-direction: row;
  gap: 6px;
  max-width: 220px;
  margin-top: 0px;
}
p {

  margin-bottom: 30px;
}

.working-bay-box.wb-used {
  pointer-events: none;
}

/* Bay já usado em Working Bay */
.working-bay-box.wb-used {
  background: #e5e7eb;
  color: #9ca3af;
  cursor: not-allowed;
  opacity: 0.6;
  pointer-events: auto; /* permite alert, mas não seleção */
}

/* IMPORTANTE: nunca mostrar como selecionável */
.working-bay-box.wb-used:hover {
  background: #e5e7eb;
  box-shadow: none;
  transform: none;
}

.workingbay-item {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 6px 10px;
  margin-bottom: 6px;

  border-radius: 6px;
  /*background: #f9fafb;
  border-left: 4px solid #0439a3;*/
}

.workingbay-remove {
  border: none;
  background: transparent;
  color: #dc2626;
  font-size: 14px;
  font-weight: bold;

  cursor: pointer;
  padding: 2px 6px;
  border-radius: 4px;
}

.workingbay-remove:hover {
  background: #fee2e2;
}

/* estilos botones salvar e guardar Json

/* =========================
   TOOLBAR – WORKING BAYS
========================= */

.workingbay-toolbar {
  display: flex;
  align-items: center;      /* 👈 mesma altura */
  justify-content: space-between;
  margin-top: 14px;
}

/* lados */
.workingbay-left,
.workingbay-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* base de botões */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 7px 14px;
  border-radius: 8px;

  font-size: 13px;
  font-weight: 600;

  cursor: pointer;
  border: none;

  height: 34px;             /* 🔑 altura fixa */
  line-height: 1;

  transition:
    background-color 0.15s ease,
    box-shadow 0.15s ease,
    transform 0.1s ease;
}

/* Cores */
.btn-save {
  background: #16a34a;
  color: #fff;
}
.btn-save:hover {
  background: #15803d;
  box-shadow: 0 4px 10px rgba(22,163,74,0.35);
}

.btn-load {
  background: #2563eb;
  color: #fff;
}
.btn-load:hover {
  background: #1d4ed8;
  box-shadow: 0 4px 10px rgba(37,99,235,0.35);
}

.btn-danger {
  background: #dc2626;
  color: #fff;
}
.btn-danger:hover {
  background: #b91c1c;
  box-shadow: 0 4px 10px rgba(220,38,38,0.35);
}

.btn:active {
  transform: scale(0.96);
}
.btn-primary {
  background: #facc15;        /* amarelo */
  color: #1f2937;
}

.btn-primary:hover {
  background: #eab308;
  box-shadow: 0 4px 10px rgba(250,204,21,0.4);
}


.bay-box { position: relative; }


/* BASE DAS LINHAS */



/* DECK – linha de cima*/
.bay-box.deck::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 6px;
  right: 6px;
  height: 2px;
  background: var(--deck-color);
}

/* HOLD – linha de baixo */
.bay-box.hold::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 6px;
  right: 6px;
  height: 2px;
  background: var(--hold-color);
}


/* ===============================
   ANIMAÇÃO SUAVE DE TROCA (DECK/HOLD)
   =============================== */

@keyframes linePulseUp {
  from { opacity: 0; transform: translateY(-2px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes linePulseDown {
  from { opacity: 0; transform: translateY(2px); }
  to   { opacity: 1; transform: translateY(0); }
}

.bay-box.deck.animate-deck::before {
  animation: linePulseUp 160ms ease-out;
}

.bay-box.hold.animate-hold::after {
  animation: linePulseDown 160ms ease-out;
}

/* ===============================
   ESTILO PARA ABA LISTA DE REMOÇÕES
   =============================== */

/* Container das 3 colunas de colagem */
.removals-paste-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  margin: 12px 0 16px;
}

/* Cada coluna vira um “card” leve */
.removals-paste-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
}

/* Título das áreas */
.removals-paste-card label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #1f2933;
  margin-bottom: 6px;
}

/* Textareas no mesmo “clima” dos selects do projeto */
.removals-paste-card textarea {
  width: 100%;
  height: 120px;
  padding: 8px;
  border-radius: 8px;
  border: 1.5px solid #d0d7de;
  font-size: 13px;
  resize: vertical;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.removals-paste-card textarea:focus {
  outline: none;
  border-color: #4f8cff;
  box-shadow: 0 0 0 3px rgba(79, 140, 255, 0.2);
}

/* Botão principal “Criar Lista” — estilo alinhado ao projeto */
.removals-toolbar {
  margin-bottom: 18px;
}

#create-removals-from-columns {
  background: #facc15; /* mesmo amarelo do .btn-primary */
  color: #1f2937;
  font-weight: 600;
  border-radius: 8px;
  padding: 8px 16px;
  box-shadow: 0 2px 6px rgba(250, 204, 21, 0.25);
}

#create-removals-from-columns:hover {
  background: #eab308;
  box-shadow: 0 4px 10px rgba(250, 204, 21, 0.4);
}

/* Ajuste fino na tabela dentro da aba */
#removals-table-body input {
  border: 1.2px solid #d0d7de;
  border-radius: 6px;
  padding: 4px 6px;
  font-size: 13px;
}

#removals-table-body input:focus {
  outline: none;
  border-color: #4f8cff;
}

/* Botão de remover linha (lixeira) mais elegante */
.remove-removal-row {
  background: transparent;
  border: 1px solid #fee2e2;
  color: #dc2626;
  border-radius: 6px;
  padding: 4px 6px;
  transition: background 0.15s ease;
}

.remove-removal-row:hover {
  background: #fee2e2;
}
/* Inputs bloqueados ficam levemente acinzentados */
.removal-input:disabled {
  background: #f3f4f6;
  color: #374151;
  cursor: not-allowed;
}

/* Botões de ação na tabela */
.edit-removal-row,
.remove-removal-row {
  background: transparent;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 4px 6px;
  margin-right: 4px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.edit-removal-row:hover {
  background: #e6f0ff;
}

.remove-removal-row:hover {
  background: #fee2e2;
}
/* ===============================
   MENU LATERAL MODERNO (Font Awesome)
   =============================== */

.menu-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 10px;
  margin-bottom: 8px;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.1s ease;
}

.menu-list li i {
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.menu-list li:hover {
  
    color: #c8cddc;
}

/* Item ativo mais destacado */
.sidebar li.active {
  color: #c8cddc;
  font-weight: 600;
}

.sidebar li.active i {
  color: #facc15; /* amarelo para ícone ativo */
}
/* ===============================
   GRUPOS NO MENU LATERAL
   =============================== */

.menu-group {
  margin-bottom: 14px;
}

.menu-group-title {
  font-size: 11px;
  letter-spacing: 0.6px;
  color: #9ca3af;
  padding: 6px 10px;
  margin-top: 6px;
}

/* Pequena linha separadora discreta */
.menu-group:not(:first-child) {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 10px;
}
/* ===============================
   MENU RECOLHÍVEL
   =============================== */

.sidebar {
  width: 240px;
  transition: width 0.25s ease;
  overflow: hidden;
  position: relative;
 
}

/* Botão de toggle */
.sidebar-toggle {
  background: transparent;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  padding: 8px 10px;
  margin-left: -6px;
}

/* ESTADO FECHADO */
.sidebar.collapsed {
  width: 64px;
}

/* Quando fechado, esconde textos COMPLETAMENTE */
.sidebar.collapsed .menu-list span {
  display: none;
  width: 0;
  opacity: 0;
 
}

/* Quando aberto, mostra o texto com transição suave */
.sidebar .menu-list span {
  display: inline;
  opacity: 1;
  transition: opacity 0.15s ease;
}


/* Centraliza ícones quando fechado */
.sidebar.collapsed .menu-list li {
  justify-content: center;
}

/* Ajuste do logo quando fechado */
.sidebar.collapsed .logo {
  font-size: 14px;
  text-align: center;
}

/* Ícones sempre visíveis e um pouco maiores quando fechado */
.sidebar.collapsed .menu-list i {
  font-size: 18px;
}
/* Centraliza ÍCONES quando o menu está fechado */
.sidebar.collapsed .menu-list li {
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
}

/* Mantém espaçamento bom quando aberto */
.sidebar .menu-list li {
  justify-content: flex-start;
}
/* ESCONDE OS TÍTULOS DOS GRUPOS QUANDO O MENU ESTÁ FECHADO */
.sidebar.collapsed .menu-group-title {
  display: none;
}

/* (Opcional) também esconde o espaçamento do grupo quando fechado */
.sidebar.collapsed .menu-group {
  margin-bottom: 4px;
}
/* Garante alinhamento perfeito dos ícones quando o menu está fechado */
.sidebar.collapsed .menu-list li {
  justify-content: center;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
}

/* Força um container único para todos os ícones no menu fechado */
.sidebar.collapsed .menu-list li {
  display: grid;
  place-items: center; /* centraliza perfeitamente */
  padding: 10px 0;
}
/* Wrapper padrão: menu ABERTO → botão à esquerda */
.sidebar-toggle-wrapper {
  display: flex;
  justify-content: flex-start; /* ← esquerda quando aberto */
  align-items: center;
  width: 100%;
  padding: 8px 12px; /* dá um respiro à esquerda */
}

/* Botão em si */
.sidebar-toggle {
  background: transparent;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Quando o menu está FECHADO → centraliza o botão */
.sidebar.collapsed .sidebar-toggle-wrapper {
  justify-content: center;
  padding-left: 0;  /* remove o recuo lateral quando fechado */
}
/* Texto do menu com transição suave */
.sidebar .menu-list span {
  opacity: 1;
  transition: opacity 0.15s ease, width 0.15s ease;
}

/* Quando fechado, esconde o texto sem “empurrar” layout */
.sidebar.collapsed .menu-list span {
  opacity: 0;
  width: 0;
  display: none;
}
.sidebar-toggle-wrapper {
  display: flex;
  justify-content: flex-start; /* aberto → esquerda */
  align-items: center;
  width: 100%;
  padding: 8px 12px;
  transition: justify-content 0.25s ease, padding 0.25s ease;
}

/* Fechado → centraliza suavemente */
.sidebar.collapsed .sidebar-toggle-wrapper {
  justify-content: center;
  padding-left: 16px;
}
.wb-count-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 12px;
}

.wb-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px;
  background: #f9f9f9;
}

.wb-card h3 {
  margin: 0 0 8px 0;
  font-size: 1rem;
}

.wb-block {
  border-top: 1px solid #ddd;
  padding-top: 8px;
  margin-top: 8px;
}

.wb-row {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
}

.wb-row .value {
  font-weight: bold;
}
/* ============================= */
/* ESTILO DOS CARDS WORKING BAY  */
/* ============================= */

.wb-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 16px;
}

/* CARD PRINCIPAL */
.wb-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 12px;
  border-left: 5px solid #1f4e79; /* azul padrão do sistema */
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.wb-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* TÍTULO DO CARD */
.wb-card h3 {
  margin: 0 0 8px 0;
  font-size: 14px;
  color: #1f4e79;
  font-weight: 600;
}

/* LINHAS DE INFORMAÇÃO */
.wb-card .row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  font-size: 13px;
  border-bottom: 1px solid #eef2f6;
}

.wb-card .row:last-child {
  border-bottom: none;
}

/* LABEL (HOLD / DECK / TOTAL) */
.wb-card .label {
  font-weight: 600;
  color: #444;
}

/* VALOR NUMÉRICO */
.wb-card .value {
  font-weight: 600;
  color: #1f4e79;
}

/* ============================= */
/* CORES DIFERENTES POR TIPO     */
/* ============================= */

.wb-hold {
  border-left-color: #2c7be5; /* azul */
}

.wb-deck {
  border-left-color: #28a745; /* verde */
}

.wb-total {
  border-left-color: #fd7e14; /* laranja */
}

/* PEQUENO BADGE DE TIPO (opcional) */
.wb-badge {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  margin-left: 6px;
}

.badge-hold {
  background: #e7f1ff;
  color: #1f4e79;
}

.badge-deck {
  background: #e8f5e9;
  color: #1e7e34;
}

.badge-total {
  background: #fff3e0;
  color: #c05600;
}
/* ===== ESCONDER TABELA DETALHADA NA ABA CARDS DISCH ===== */

/* Diferenciação visual HOLD x DECK quando separados */
.wb-card-hold {
  border-left: 5px solid #e53935; /* vermelho descarga */
  background: rgba(229, 57, 53, 0.05);
}

.wb-card-deck {
  border-left: 5px solid #1e88e5; /* azul carga/deck */
  background: rgba(30, 136, 229, 0.05);
}

/* Cabeçalho do card (título + portainer à direita) */
.wb-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

/* Selo de portainer no canto direito */
.wb-total {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
  background: #f2f2f2;
}
.different-portainer-hold {
  background: #fff3f3;
  border-left: 5px solid #e74c3c;
  padding-left: 8px;
}

.different-portainer-deck {
  background: #f0f6ff;
  border-left: 5px solid #3498db;
  padding-left: 8px;
}

.wb-row small {
  margin-left: 8px;
  color: #666;
  font-size: 12px;
}
/* Linha de portainers no topo do card */
.wb-portainer-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* Selo colorido do portainer */
.wb-portainer-tag {
  color: white;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}

/* Cabeçalho do card */
.wb-card-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 6px;
}
#discharge-table-wrapper.hidden {
  display: none;
}
/* ===== REGRA PADRÃO PARA ESCONDER QUALQUER ELEMENTO ===== */
.hidden {
  display: none !important;
}
/* ===== ESCONDER TABELA DE CONTAGEM SEM AFETAR O SELECT ===== */
.hide-discharge-table table.planner-table {
  display: none;
}
/*css tela programacion*/

.programming-a4 {
  max-width: 980px;
  margin: 0 auto;
  background: rgb(240, 239, 239);
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.prog-header {
  text-align: center;
}

.prog-header-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  margin-top: 10px;
}

.terno-title {
  text-align: center;
  margin: 16px 0;
  letter-spacing: 1px;
  
}

.prog-table {
  width: 100%;
  margin-bottom: 10px;
}

.resumo-table {
  width: 90%;
  margin-bottom: 20px;
}

.highlight {
  background: #0cf704; /* amarelo suave para BBK/Remoções */
}

.prog-footer {
  text-align: center;
  font-size: 12px;
  color: #ff0202;
  margin-top: 20px;
}


/* novo css programacion*/

/* ===================== LAYOUT A4 ===================== */
.programming-a4 {
  max-width: 1100px;
  margin: 20px auto;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

/* Cabeçalho bonito */
.prog-header {
  text-align: center;
}

.prog-header h1 {
  font-size: 22px;
  letter-spacing: 1px;
}

.prog-header-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 10px;
  font-size: 14px;
}

/* Título do turno */
.terno-title {
  margin: 16px 0 8px;
  color: #1f2933;
  padding-bottom: 4px;
}

/* Tabela principal da programação */
.prog-table {
  width: 100% !important;
}

/* Resumo mais compacto */
.resumo-table {
  width: 100%;
  margin-top: 10px;
}

/* Footer elegante */
.prog-footer {
  text-align: center;
  font-size: 12px;
  color: #777;
  margin-top: 20px;
}
/* para orden de bay*/
/* ===============================
   DRAG & DROP - ORDEM DAS BAYS
   =============================== */

.programming-order-panel {
  background: #ffffff;
  padding: 12px 14px;
  border-radius: 10px;
  margin-bottom: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.programming-order-header {
  margin-bottom: 8px;
}

.programming-order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.terno-order-card {
  background: #f8fafc;
  border-radius: 8px;
  padding: 8px;
  border: 1px solid #e5e7eb;
}

.terno-order-title {
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 6px;
}

/* Área onde as bays ficam */
.bay-order-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 8px;
  background: white;
  border-radius: 6px;
  min-height: 40px;
  border: 1px dashed #cbd5e1;
}




/* Cada bay (ARRASTÁVEL) */
.bay-order-item {
  padding: 8px 12px;
  padding: 6px 10px;
  background: #1f2937;
  color: white;
  border-radius: 6px;
  font-weight: bold;
  font-size: 12px;
  cursor: grab;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.bay-order-item {
  transition: transform 0.2s ease;
}


/*.bay-order-item {
  width: 100%;
  padding: 6px 10px;
  text-align: center;
  background: #f3f4f6;
  border-radius: 6px;
  cursor: grab;
  user-select: none;
}*/







/* quando está sendo arrastado */
.bay-order-item.dragging {
  opacity: 0.5;
}


/* togle para terno em programacion*/

.programming-toggle {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.toggle-btn {
  padding: 6px 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
  cursor: pointer;
  background: #747775;
  font-weight: 500;
}

.toggle-btn.active {
  background: #2563eb;
  color: white;
  border-color: #2563eb;
}


.sort-terno-btn {
  margin-left: 8px;
  font-size: 12px;
  padding: 2px 6px;
  cursor: pointer;
  border: 1px solid #ccc;
  background: #525353;
  border-radius: 4px;
}

.sort-terno-btn:hover {
  background: #434444;
}

.programming-a4 table.prog-table tbody tr.removal-row {
  background-color: #fff8dc;
}

.programming-a4 table.prog-table tbody tr.removal-row td {
  color: #8a6d00;
  font-weight: 600;
}
.programming-a4 table.prog-table tbody tr.removal-row:hover {
  background-color: #ffeaa7; /* amarelo mais vivo */
  transition: background-color 0.2s ease;
}

.programming-a4 table.prog-table tbody tr.removal-row {
  background-color: #fff8dc;
  border-left: 4px solid #ebbf0fa9;
}
.bbk-position-input {
  border-radius: 4px;
  border: 1px solid #ccc;
  padding: 4px;
}



/* teste boton*/

.terno-order-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.terno-order-title button {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: 1px solid #dcdcdc;
  background: #d3d0d0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.terno-order-title button:hover {
  background: #e2e8f0;
  border-color: #bdbdbd;
  transform: translateY(-1px);
}

.terno-order-title button:active {
  transform: translateY(0px);
}


.move-terno-btn {
  background: #3c7eca;
  border-color: #c5defa;
}

.move-terno-btn:hover {
  background: #cfaa06;
}


/*teste pular*/
@keyframes jumpRight {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  40% {
    transform: translateY(-18px) rotate(3deg);
  }
  70% {
    transform: translateX(90px) translateY(-10px) rotate(6deg);
  }
  100% {
    transform: translateX(130px) rotate(8deg);
    opacity: 0;
  }
}

@keyframes jumpLeft {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  40% {
    transform: translateY(-18px) rotate(-3deg);
  }
  70% {
    transform: translateX(-90px) translateY(-10px) rotate(-6deg);
  }
  100% {
    transform: translateX(-130px) rotate(-8deg);
    opacity: 0;
  }
}

.bay-order-item.moving-right {
  animation: jumpRight 0.45s ease forwards;
}

.bay-order-item.moving-left {
  animation: jumpLeft 0.45s ease forwards;
}

@keyframes dropInRight {
  0% {
    transform: translateX(130px) translateY(-10px) rotate(8deg);
    opacity: 0;
  }
  60% {
    transform: translateX(0px) translateY(4px) rotate(-2deg);
    opacity: 1;
  }
  80% {
    transform: translateY(-2px) rotate(1deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes dropInLeft {
  0% {
    transform: translateX(-130px) translateY(-10px) rotate(-8deg);
    opacity: 0;
  }
  60% {
    transform: translateX(0px) translateY(4px) rotate(2deg);
    opacity: 1;
  }
  80% {
    transform: translateY(-2px) rotate(-1deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

.bay-order-item.entering-right {
  animation: dropInRight 0.45s ease forwards;
}

.bay-order-item.entering-left {
  animation: dropInLeft 0.45s ease forwards;
}


/* entrada de card*/
.bay-order-item.pre-enter-right {
  opacity: 0;
  transform: translateX(120px) scale(0.95);
}

.bay-order-item.pre-enter-left {
  opacity: 0;
  transform: translateX(-120px) scale(0.95);
}

.bay-order-item.enter-active {
  transition: all 0.35s cubic-bezier(.2,.8,.2,1);
  opacity: 1;
  transform: translateX(0) scale(1);
}
/* entrada de*/

.bay-order-item.exit-left {
  opacity: 0;
  transform: translateX(-150px) rotate(-5deg);
  transition: all 0.3s ease;
}

.bay-order-item.exit-right {
  opacity: 0;
  transform: translateX(150px) rotate(5deg);
  transition: all 0.3s ease;
}

.bay-order-item.pre-enter-right {
  opacity: 0;
  transform: translateX(120px) scale(0.95);
}

.bay-order-item.pre-enter-left {
  opacity: 0;
  transform: translateX(-120px) scale(0.95);
}

.bay-order-item.enter-active {
  transition: all 0.35s cubic-bezier(.2,.8,.2,1);
  opacity: 1;
  transform: translateX(0) scale(1);
}


/* Estado inicial (antes de entrar) */
.bay-order-item.entering {
  opacity: 0;
  transform: translateX(40px) scale(0.95);
}

/* Estado final animado */
.bay-order-item.enter-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  transition: all 0.35s ease;
}
/* animacion reset mpoderno*/
/* SAÍDA RESET */
.exit-reset {
  opacity: 0;
  transform: translateY(-20px) scale(0.9);
  transition: all 0.35s ease;
}

/* ESTADO INICIAL ENTRADA RESET */
.pre-enter-reset {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
}

/* ENTRADA ATIVA (já usa enter-active) */
.enter-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: all 0.4s ease;
}
/*initsortternibutton*/
/* saída leve sort */
.exit-sort {
  opacity: 0;
  transform: translateY(-10px) scale(0.95);
  transition: all 0.25s ease;
}

/* estado inicial entrada */
.pre-enter-sort {
  opacity: 0;
  transform: translateY(10px) scale(0.95);
}

/* anima botão girando */
.rotate-btn {
  transition: transform 0.3s ease;
  transform: rotate(180deg);
}


/* dados do navio em programacion*/
.programming-header-form {

  width: 70%;
  background: #ffffff;
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 14px;
  border: 1px solid #e5e7eb;
}

.header-form-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.header-form-grid label {
  font-size: 11px;
  font-weight: 600;
  color: #202020;
  display: block;
  margin-bottom: 4px;
}

.header-form-grid input {
  width: 100%;
  padding: 6px 8px;
  font-size: 13px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
}

.header-form-grid input:focus {
  outline: none;
  border-color: #0dc91d;
}

/* para boton quando gera programacion cargando*/
#generate-programming.loading {
  opacity: 0.7;
  cursor: not-allowed;
  transform: scale(0.97);
  transition: all 0.2s ease;
}


/* para imprimir*/
/* ================= IMPRESSÃO ================= */
@media print {

  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  body {
    margin: 0;
    padding: 0;
    background: white;
  }

  /* Remove sombra e centralização da A4 */
  .programming-a4 {
    box-shadow: none !important;
    margin: 0 !important;
    padding: 8mm !important;
    width: 100% !important;
    max-width: 98% !important;
  }

  /* Reduz fonte geral */
  .programming-a4 {
    font-size: 11px;
    border: 0;
  }

  /* Cabeçalho mais compacto */
  .prog-header h1 {
    font-size: 10px;
    margin-bottom: 4px;
  }

  .prog-header-info {
    font-size: 11px;
  }

  /* Títulos dos ternos */
  .terno-title {
    font-size: 13px;
  
  }

.terno-title + .prog-table {
    margin-top: 10px !important;
  }


  /* Tabelas mais compactas */
  .planner-table {
    font-size: 10px;
  }

  .planner-table th,
  .planner-table td {
    padding: 3px 1px !important;   /* menor espaço interno */
    font-size: 11px !important;    /* fonte menor */
    line-height: 1.8 !important;   /* reduz altura da linha */

  }


  .resumo-table {
    margin-top: 10px !important;
  }

  /* Remove espaços extras */
  hr {
    margin-top: 2px;

  }

  br {
    display: none;
  }

  /* Evitar quebra no meio da tabela */
  table {
    page-break-inside: avoid;
  }

  .terno-title {
    page-break-after: avoid;
    margin: 0px 0px 0px 0px !important;
  }

  /* Esconde tudo que não é A4 */
  body * { 
    visibility: hidden;
  }

  .programming-a4,
  .programming-a4 * {
    visibility: visible;
  }

  .programming-a4 {
    position: absolute;
    left: 0;
    top: 0;
  }

  h2 {
    margin: 6px 0 0 0 !important;
  }

  /* Remove fundo e sombras */
  

.programming-container {
  display: none !important;
}
  
.print-hidden {
    display: none !important;
  }

  .print-tampas-value {
    display: inline-block;
    font-weight: 600;
  }


}

/* modal*/

/* ===============================
   MODAL – RESTOW
=============================== */

.removal-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 9999;
}

.removal-modal.hidden {
  display: none;
}

.removal-modal-content {
  background: #ffffff;

  width: 35%;
  max-width: 1000px;     /* 🔥 largura real confortável */
  max-height: 85vh;

  padding: 24px 30px;

  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);

  overflow-y: auto;
}

/* Título */
.removal-modal-content h3 {
  margin-bottom: 18px;
  font-size: 18px;
}

/* Tabela do modal */
.modal-table {
  width: 100%;               /* 🔥 ocupa todo o espaço */
  border-collapse: collapse;
  font-size: 14px;
}

.modal-table th,
.modal-table td {
  padding: 10px 14px;        /* 🔥 mais espaço interno */
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
}

.modal-table thead {
  background: #16a34a;
  color: white;
}

.modal-table tbody tr:hover {
  background: #f3f4f6;
}

/* Evita quebrar código do container */
.modal-table td:first-child {
  white-space: nowrap;
}

/* Botão */
#close-removal-modal {
  margin-top: 18px;
}

.removal-count {
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  margin-left: 8px;
}
#close-removal-modal {
  margin-top: 24px;   /* mais espaço acima */
  padding: 10px 22px; /* botão mais confortável */
}
#close-removal-modal {
  align-self: flex-end; /* botão alinhado à direita */
}

/* bloqueio ao importar programacion*/
.programming-locked input,
.programming-locked select,
.programming-locked button#generate-programming {
  pointer-events: none;
  opacity: 0.6;
  cursor: not-allowed;
}
/* ===============================
   LINHA CONCLUÍDA
=============================== */

/* ===============================
   LINHA CONCLUÍDA (PRIORIDADE)
=============================== */

tr.line-completed {
  background-color: #abadaf !important;
}

tr.line-completed td {
  color: #171425 !important;
  text-decoration: line-through;
}
/* ===============================
   SUPERVISOR MODE – SOMENTE A4
=============================== */
/* ===============================
   SUPERVISOR MODE – SOMENTE A4
=============================== */

/* Esconde sidebar */
.supervisor-mode .sidebar {
  display: none;
}

/* Esconde TUDO da tela programming */
.supervisor-mode .select-group,
.supervisor-mode .programming-header-form,
.supervisor-mode .workingbay-toolbar,
.supervisor-mode .programming-toggle,
.supervisor-mode .programming-order-panel,
.supervisor-mode p {
  display: none !important;
}

/* Mantém apenas A4 visível */
.supervisor-mode .view-header {
  display: none !important;
}

.supervisor-mode .select-group,
.supervisor-mode .programming-header-form,
.supervisor-mode .workingbay-toolbar,
.supervisor-mode .programming-toggle,
.supervisor-mode .programming-order-panel,
.supervisor-mode p {
  display: none !important;
}

/* Esconde botão normal de load/save */
.supervisor-mode #save-programming-json,
.supervisor-mode #load-programming-json,
.supervisor-mode #generate-programming,
.supervisor-mode #print-programming {
  display: none !important;
}

/* Centraliza A4 */
.supervisor-mode .programming-a4 {
  margin: 0 auto;
  box-shadow: none;
}












/* modo supervisor para boton y tela modo supervisor*/
.supervisor-loader {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0; /* pequeno espaçamento */
}

.supervisor-loader button {
  padding: 14px 24px;
  font-size: 16px;
  cursor: pointer;
}

/* =====================================
   RESPONSIVO – TELEFONE
===================================== */

@media (max-width: 768px) {

  /* A4 vira fluida */
  .programming-a4 {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 10px;
    box-sizing: border-box;
  }

  /* Reduz título */
  .prog-header h1 {
    font-size: 16px;
    text-align: center;
  }

  .prog-header-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
  }

  /* Faz container rolar horizontal */
  .programming-a4 {
    overflow-x: auto;
  }

  /* Mantém largura mínima da tabela */
  .prog-table {
    min-width: 700px;
  }

  /* Fonte menor */
  .prog-table th,
  .prog-table td {
    font-size: 12px;
    padding: 4px;
  }

  .resumo-table td {
    font-size: 12px;
    padding: 4px;
  }

}
/* boton history*/
.btn-history {
  background: #0ea5e9;
  color: white;
}

.btn-history:hover {
  background: #0284c7;
}


/*para history*/
.history-container {
  padding: 16px;
}

.history-table td,
.history-table th {
  text-align: center;
}

/* =========================
   HISTORY TABLE
========================= */

.history-wrapper {
  padding: 20px;
}

/* tabela */
.history-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* cabeçalho */
.history-table thead {
  background: linear-gradient(90deg, #1e293b, #334155);
  color: #fff;
}

.history-table th {
  padding: 14px 12px;
  text-align: center;
  font-size: 13px;
  letter-spacing: .5px;
  font-weight: 600;
}
.history-table th:nth-last-child {
  text-align: left !important;
}


/* corpo */
.history-table td {
  padding: 12px;
  font-size: 13px;
  border-bottom: 1px solid #f1f5f9;
}

/* hover */
.history-table tbody tr:hover {
  background: #f8fafc;
  transform: scale(1.002);
  transition: all .15s ease;
}

/* última linha sem borda */
.history-table tbody tr:last-child td {
  border-bottom: none;
}

/* =========================
   ACTION BUTTONS
========================= */

.history-table td:last-child {
  display: flex;
  gap: 8px;
}

/* botões */
.history-table button {
  border: none;
  background: #d3d0d0;
  padding: 6px 8px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: all .15s ease;
}

/* hover geral */
.history-table button:hover {
  transform: translateY(-1px);
  background: #e2e8f0;
}

/* cores específicas */
.btn-open-planner:hover {
  background: #dbeafe;
}

.btn-open-supervisor:hover {
  background: #ede9fe;
}

.btn-copy-link:hover {
  background: #dcfce7;
}

.btn-delete-history:hover {
  background: #fee2e2;
}

/* =========================
   BADGES (opcional futuro)
========================= */

.history-badge {
  background: #e0f2fe;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
}
.history-table button i {
  pointer-events: none; /* importante */
}
.history-table th {
  text-align: center;
}

.history-table td {
  text-align: center;
}

.history-table td:first-child {
  text-align: center;
}

/*
/* estado normal */
.sidebar .menu-list span {
  opacity: 1;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

/* estado fechado */
.sidebar.collapsed .menu-list span {
  opacity: 0;
  pointer-events: none;
}

.menu-list li {
  overflow: hidden;
}

.sidebar.collapsed .sidebar-toggle-wrapper {
  justify-content: center;
  padding-left: 16px;
}

.sidebar.collapsed .menu-list li {
  justify-content: center;
  align-items: center;
}
.menu-list li i {
  width: 20px;
  text-align: center;
  font-size: 16px;
  flex-shrink: 0;
}

/* item base */
.menu-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
}

/* ícone fixo */
.menu-list li i {
  width: 20px;
  text-align: center;
  font-size: 16px;
  flex-shrink: 0;
}

/* fechado */
.sidebar.collapsed .menu-list li {
  justify-content: center;
  padding: 11px 0;
}

/* para select de auditoria ficar mais bonito*/
.audit-select {
  padding: 6px 10px;
  min-width: 200px;
  border-radius: 6px;
}






/* menu header*/
