/* ===== VARIÁVEIS CSS GLOBAIS ===== */
:root {
  /* Cores principais */
  --primary: #4a90e2;
  --primary-dark: #3a7bc8;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  
  /* Cores de texto */
  --text-primary: #e2e8f0;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  /* Cores de fundo */
  --bg-primary: #0f172a46;
  --bg-secondary: #1e293b54;
  --surface: #1e293b52;
  --surface-hover: #334155;
  
  /* Bordas */
  --border: #334155;
  --border-light: #475569;
  
  /* Inputs */
  --input-bg: #0f172a;
  --input-border: #334155;
  --input-focus: #4a90e2;
  
  /* Sombras */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* ===== CENTRALIZAÇÃO GLOBAL DE MODAIS DE USUÁRIO ===== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  background: rgba(10,18,30,0.82);
  backdrop-filter: blur(2px);
  transition: opacity 0.25s;
}
/* Modal de confirmação customizado */
.custom-confirm-modal {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.65);
  z-index: 100000;
  display: flex; align-items: center; justify-content: center;
  animation: alertFadeIn 0.3s ease-out forwards;
}
.custom-confirm-content {
  background: #181f2a;
  border-radius: 16px;
  padding: 32px 32px 24px 32px;
  min-width: 340px;
  max-width: 98vw;
  box-shadow: 0 8px 32px rgba(14,165,255,0.10), 0 2px 16px rgba(0,0,0,0.18);
  display: flex; flex-direction: column; align-items: center;
}
.custom-confirm-icon {
  font-size: 38px; margin-bottom: 10px;
}
.custom-confirm-title {
  font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 8px;
}
.custom-confirm-message {
  font-size: 16px; color: #e2e8f0; margin-bottom: 18px; text-align: center;
}
.custom-confirm-actions { display: flex; gap: 16px; }
.custom-confirm-modal .btn {
  padding: 8px 22px; border-radius: 8px; font-size: 15px; font-weight: 600; border: none; cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.custom-confirm-modal .btn-danger {
  background: #ef4444; color: #fff;
}
.custom-confirm-modal .btn-danger:hover {
  background: #b91c1c;
}
.custom-confirm-modal .btn-cancel {
  background: #23272f; color: #cbd5e1;
}
.custom-confirm-modal .btn-cancel:hover {
  background: #334155; color: #fff;
}
/* Botão Alterar Senha no modal de usuário */
#btnAlterarSenha {
  background: linear-gradient(135deg, #10151c 80%, #19212c 100%);
  color: #60a5fa;
  border: 1.5px solid rgba(14,165,255,0.15);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 0;
  box-shadow: none;
  transition: background 0.18s, color 0.18s, border 0.18s;
  cursor: pointer;
}
#btnAlterarSenha:hover, #btnAlterarSenha:focus {
  background: rgba(14,165,255,0.08);
  color: #0ea5ff;
  border-color: #0ea5ff;
}

.avatar-wrapper {
  position: relative;
  display: inline-block;
}

.avatar-large {
  position: relative;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(145deg, #1a2333, #0f1622);
  border: 1px solid rgba(14,165,255,0.25);
  color: #60a5fa;
  font-weight: 600;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.avatar-large:hover {
  background: rgba(14,165,255,0.1);
  border-color: rgba(14,165,255,0.5);
  color: #0ea5ff;
}

/* Dropdown estilizado */
.avatar-dropdown {
  position: absolute;
  top: 110%;
  right: 0;
  background: #10151c;
  border-radius: 12px;
  min-width: 180px;
  border: 1px solid rgba(14,165,255,0.15);
  padding: 6px 0;
  display: none;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 120000;
}

.avatar-dropdown.menuShow {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Itens */
.avatar-dropdown a {
  color: #93c5fd;
  text-decoration: none;
  padding: 10px 18px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.2s, color 0.2s;
}

.avatar-dropdown a:last-child {
  border-bottom: none;
}

.avatar-dropdown a:hover {
  background: rgba(14,165,255,0.08);
  color: #0ea5ff;
}

.avatar-dropdown a.delete {
  color: #ef4444;
}

.avatar-dropdown a.delete:hover {
  background: rgba(239,68,68,0.1);
  color: #fff;
}



/* ===============================
   AJUSTE DO CONTAINER PRINCIPAL
   =============================== */

/* Garante que o menu do avatar não seja cortado */
.main {
  display: flex;
  flex-direction: column;
  border: 1.5px solid rgba(14,165,255,0.15);
  overflow: visible !important; /* mantém dropdown visível */
}


/* ===== SCROLLBAR GLOBAL (mais fina e elegante) ===== */
::-webkit-scrollbar {
  width: 16px;
  height: 16px;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #2563eb 40%, #60a5fa 100%);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(14,165,255,0.10);
  border: 1.5px solid #181f2a;
}
::-webkit-scrollbar-track {
  background: #10151c;
  border-radius: 8px;
}
::-webkit-scrollbar-corner {
  background: #181f2a;
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #2563eb #10151c;
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #2563eb #10151c;
}

/* ===== PADRÃO GLOBAL PARA SUMMARY ===== */
.summary, .summary-box, .summary-cards, .financial-summary, .financial-summary.small, #clientsSummary, .products-page #productsSummary, .plans-page #plansSummary, .clients-page #clientsSummary, .summary-text, .results-summary {
  font-size: 13px !important;
  color: #9aa3ad !important;
  font-weight: 400 !important;
  letter-spacing: 0.01em;
}



/* ===== TOAST ALERT (GLOBAL) ===== */
.toast-alert {
  position: fixed;
  top: 24px;
  right: 24px;
  min-width: 320px;
  max-width: 420px;
  background: #105207;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  padding: 18px 32px 18px 20px;
  z-index: 110000;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: toast-in 0.3s ease;
}
.toast-alert .toast-close {
  margin-left: auto;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.toast-alert .toast-close:hover {
  opacity: 1;
}
@keyframes toast-in {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== RESET E BASE ===== */
* { box-sizing: border-box; font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial; }
html, body, #root, .app { height: 100%; }
body { margin: 0; padding: 0; min-height: 100vh; background: var(--bg); }
body { margin: 0; font-size: 13px; background: linear-gradient(180deg, #19212c 0%, #090e13 100%); color: #e2e2e2 ; }

/* ===== LAYOUT PRINCIPAL ===== */
.app { display: flex; min-height: 100vh; }
.sidebar {
  width: 240px;
  background: linear-gradient(180deg, rgba(17,24,39,1) 0%, rgba(30,41,59,0.98) 100%);
  padding: 20px 16px 24px 16px;
  height: 100vh;
  box-shadow: 4px 0 25px rgba(2,6,23,0.7), inset 1px 0 0 rgba(255,255,255,0.03);
  width: clamp(200px, 15vw, 260px);
  padding: clamp(1.25rem, 3vw, 1.7rem) clamp(1rem, 2vw, 1rem) 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  border-right: 1px solid rgba(59, 130, 246, 0.1);
}
.main { flex: 1; display: flex; flex-direction: column; min-height: 100vh; }
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(0.75rem, 2vw, 1.25rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  min-height: 70px;
  flex-shrink: 0;
  background: linear-gradient(90deg, rgba(17,24,39,1) 0%, rgba(30,41,59,0.98) 70%, rgba(10,12,18,1) 100%);
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.10);
}
.content, .profile-container {
  padding: clamp(0.75rem, 2vw, 1.25rem) clamp(2vw, 4vw, 3.5rem);
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  height: calc(100vh - 70px);
  box-sizing: border-box;
  
}

/* ===== SIDEBAR ===== */
.brand { display: flex; align-items: center; gap: 8px; margin-bottom: 30px; padding-bottom: 5x; border-bottom: 1px solid rgba(255,255,255,0.08); }
.brand-logo { max-width:200px; height:auto; display:block; }
.sidebar nav ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; }
.sidebar nav li { border-radius: 10px; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; }
.sidebar nav a { display: flex; align-items: center; padding: 12px 16px; border-radius: 10px; color: #94a3b8; text-decoration: none; font-weight: 500; font-size: 14px; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); position: relative; z-index: 2; letter-spacing: 0.025em; }
.sidebar nav a::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: transparent; transition: all 0.3s ease; border-radius: 0 2px 2px 0; }
.sidebar nav li:hover { background: rgba(255, 255, 255, 0.04); transform: translateX(2px); }
.sidebar nav li:hover a { color: #e2e8f0; }
.sidebar nav li:hover a::before { background: rgba(59, 130, 246, 0.5); }
.sidebar nav li.active { background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(29, 78, 216, 0.08)); border: 1px solid rgba(59, 130, 246, 0.2); box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15); }
.sidebar nav li.active a { color: #ffffff; font-weight: 600; }
.sidebar nav li.active a::before { background: linear-gradient(180deg, #60a5fa, #3b82f6); width: 4px; }
.sidebar nav li.disabled { opacity: 0.4; }
.sidebar-footer { margin-top: auto; padding: 12px 0 8px 0; text-align: center; border-top: 1px solid rgba(59, 130, 246, 0.1); background: linear-gradient(135deg, rgba(59, 130, 246, 0.03), transparent); border-radius: 8px 8px 0 0; }
.sidebar-footer p { color: #64748b; font-size: 11px; margin: 0; opacity: 0.8; font-weight: 500; letter-spacing: 0.5px; }

/* ===== COMPONENTES GERAIS ===== */

/* ===== SELECTS GLOBAIS (TEMA ESCURO PREMIUM) ===== */
select,
.modal-form select,
.filters select,
.controls-right select,
.search-row select,
.page-size,
.card select,
input[type="date"],
#pageSize,
#plansPageSize,
#productsPageSize,
#filterPlan,
#filterProduct,
#filterStatus,
#filterPayment {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  background: linear-gradient(145deg, rgba(16, 24, 35, 0.95), rgba(12, 17, 25, 0.95));
  color: var(--muted-light);
  border: 1.5px solid rgba(14,165,255,0.15);
  border-radius: 10px;
  padding: 10px 14px;
  padding-right: 40px !important;
  font-size: 14px;
  line-height: 1.2;
  cursor: pointer;
  transition: all 0.25s ease;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24'><path fill='%230ea5ff' d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px 14px;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.04), 0 2px 8px rgba(14,165,255,0.06);
}

/* ===== HOVER ===== */
select:hover {
  border-color: rgba(14,165,255,0.35);
  box-shadow: 0 0 8px rgba(14,165,255,0.15);
  background: linear-gradient(145deg, rgba(16,26,38,1), rgba(12,20,30,1));
}

/* ===== FOCUS ===== */
select:focus {
  outline: none;
  border-color: rgba(14,165,255,0.45);
  box-shadow: 0 0 0 3px rgba(14,165,255,0.12), inset 0 1px 2px rgba(255,255,255,0.05);
}

/* ===== OPTIONS ===== */
select option {
  background: #0e141c;
  color: #f1f5f9;
  font-weight: 500;
  padding: 10px;
  border: none;
}

/* ===== HOVER NAS OPÇÕES (visível em alguns navegadores) ===== */
select option:hover {
  background: #1e293b;
  color: #38bdf8;
}

/* ===== DESABILITADO ===== */
select:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  background: rgba(30, 41, 59, 0.4);
  border-color: rgba(255,255,255,0.05);
}


/* ===== CABEÇALHO GLOBAL ===== */
.global-header { display:flex; justify-content:space-between; align-items:center; width:100%; }
.global-left h1 { margin:0; font-size:20px; }
.global-right { display:flex; align-items:center; gap:16px; }
.due-badge-large { padding:8px 12px; border-radius:8px; border:1px solid rgba(14,165,255,0.15); color:#32e416; background:rgba(14,165,255,0.04); font-size:13px; }
.due-left { display:flex; align-items:center; gap:10px; }
.due-left .due-label { color:#0ea5ff; font-weight:600; margin-right:6px; }
.profile-large { display:flex; align-items:center; gap:12px; }
.profile-large .profile-info .name { font-size:18px; font-weight:700; color:#42b3e7; }
.profile-large .profile-info .sub { font-size:14px; color:#d4d4d4; }


/* ===== FILTROS ===== */
.filters .filters-row { display: flex; gap: 12px; flex-wrap: wrap; }
.filters .filter-item { display: flex; flex-direction: column; }
.filters .filter-item:last-child { margin-left: auto; align-self: center; }
.filters label { font-size: 13px; color: var(--muted); margin-bottom: 6px;  }
.filters input, .filters select { padding: 6px; border-radius: 6px; border: 1px solid rgba(255,255,255,0.04); background: transparent; color: #fff; }
.filters-main { display: flex; gap: 12px; align-items: flex-start; justify-content: flex-start; }
.filters-left .filter-item { margin: 0; }
.filters-left .search-input { width: 100%; padding: 8px 12px; height: 36px; border-radius: 8px; font-size: 14px; }
.filters-right { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; flex: 1; }
.filters-right .filter-item { margin: 0; display: flex; flex-direction: column; }
.filters-right .filter-item:last-child { margin-left: auto; align-self: center; }
.filters-right select, .filters-right .clear-btn, .filters-right .page-size, .filters-right .filter-item select { height: 36px; padding: 6px 10px; border-radius: 8px; display: inline-flex; align-items: center; }
.filters-right .clear-btn { padding: 0 12px; min-width: 64px; }
.filters-right .page-size { width: 64px; text-align: center; }
.filters-left label, .filters-right label { margin-bottom: 4px; }




/* ===== SISTEMA DE ALERTA PERSONALIZADO ===== */
.alert-overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0, 0, 0, 0.7); display: flex; align-items: center; justify-content: center; z-index: 100000; backdrop-filter: blur(3px); opacity: 0; animation: alertFadeIn 0.3s ease-out forwards; }
@keyframes alertFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes alertSlideIn { from { opacity: 0; transform: scale(0.8) translateY(-20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
@keyframes alertSlideOut { from { opacity: 1; transform: scale(1) translateY(0); } to { opacity: 0; transform: scale(0.8) translateY(-20px); } }
.alert-modal { background: linear-gradient(145deg, var(--panel), rgba(17, 21, 26, 0.98)); border-radius: 16px; padding: 32px; max-width: 400px; width: 90%; text-align: center; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.08); animation: alertSlideIn 0.3s ease-out; }
.alert-modal.closing { animation: alertSlideOut 0.2s ease-in forwards; }
.alert-icon { width: 64px; height: 64px; margin: 0 auto 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: bold; }
.alert-icon.success { background: linear-gradient(135deg, #10b981, #059669); color: #fff; }
.alert-icon.error { background: linear-gradient(135deg, #ef4444, #dc2626); color: #fff; }
.alert-icon.warning { background: linear-gradient(135deg, #f59e0b, #d97706); color: #fff; }
.alert-icon.info { background: linear-gradient(135deg, #3b82f6, #2563eb); color: #fff; }
.alert-title { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--muted-light); }
.alert-title.success { color: #10b981; }
.alert-title.error { color: #ef4444; }
.alert-title.warning { color: #f59e0b; }
.alert-title.info { color: #3b82f6; }
.alert-message { font-size: 14px; color: var(--muted); margin-bottom: 24px; line-height: 1.5; }
.alert-buttons { display: flex; gap: 12px; justify-content: center; }
.alert-btn { padding: 12px 24px; border-radius: 10px; font-weight: 600; font-size: 14px; cursor: pointer; transition: all 0.2s ease; border: none; min-width: 100px; }
.alert-btn.primary { background: linear-gradient(135deg, #3b82f6, #2563eb); color: #fff; }
.alert-btn.primary:hover { background: linear-gradient(135deg, #2563eb, #1d4ed8); }
.alert-btn.success { background: linear-gradient(135deg, #10b981, #059669); color: #fff; }
.alert-btn.success:hover { background: linear-gradient(135deg, #059669, #047857); }
.alert-btn.danger { background: linear-gradient(135deg, #ef4444, #dc2626); color: #fff; }
.alert-btn.danger:hover { background: linear-gradient(135deg, #dc2626, #b91c1c); }
.alert-btn.secondary { background: transparent; border: 1px solid rgba(255, 255, 255, 0.2); color: var(--muted-light); }
.alert-btn.secondary:hover { background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.3); }



/* ===== idebar mobile ===== */
:root {
  --panel: rgba(17, 24, 39, 0.85);
  --muted: #94a3b8;
  --muted-light: #cbd5e1;
}

@media (max-width: 900px) {
  html, body {
    width: 100vw !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
  .app, .main, .dashboard-page, .dashboard-charts, .chart, #lancamentosChart {
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }
  .sidebar {
    position: fixed !important;
    left: 0;
    top: 0;
    height: 100vh !important;
    width: 240px !important;
    max-width: 80vw !important;
    z-index: 2200 !important;
    box-shadow: 2px 0 16px rgba(0,0,0,0.25);
    background: #23272f !important;
    transition: transform 0.3s, opacity 0.3s;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-100%);
  }
  .sidebar.menu-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }



  @media (max-width: 900px) {
  #sidebarToggleBtn {
    order: 1;
    position: fixed !important;
    left: 18px !important;
    top: 18px !important;
    z-index: 2300 !important;
    display: block !important;
    width: 44px !important;
    height: 44px !important;
    background: none !important;
    border: none !important;
    font-size: 2.2rem !important;
    color: #38b6ff !important;
    cursor: pointer !important;
    align-items: center !important;
    justify-content: center !important;
    margin-right: 10px !important;
  }
}
  #sidebarToggleBtn {
    position: fixed !important;
    left: 18px !important;
    top: 18px !important;
    z-index: 2300 !important;
    display: block !important;
  }
  .global-header {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    position: relative;
    min-height: 56px;
    width: 100vw !important;
    overflow: visible !important;
  }
  .global-left {
    order: 2;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-left: 56px !important;
  }
  .global-right {
    order: 3;
    position: absolute;
    right: 50px !important;
    top: 8px;
    z-index: 2200;
    display: flex;
    align-items: center;
  }
  .profile-info {
    display: none !important;
  }
  .avatar-wrapper {
    margin-right: -40px !important;
    margin-left: 0 !important;
    padding-right: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    height: 44px !important;
  }
  .avatar-large {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    background: #2563eb !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.6em !important;
    margin: 0 !important;
  }
  .kpis, .summary-cards {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px !important;
    align-items: stretch !important;
    width: 100% !important;
  }
  .kpi, .card.summary {
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    text-align: left !important;
    font-size: 0.95em !important;
    padding: 10px !important;
    border-radius: 10px !important;
  }
  .card-value {
    font-size: 22px !important;
    margin-top: 6px !important;
  }
  .card-title {
    font-size: 13px !important;
  }
  .card-icon {
    font-size: 16px !important;
    width: 28px !important;
    height: 28px !important;
    border-radius: 8px !important;
  }
  .dashboard-summary {
    margin-bottom: 18px !important;
  }
  .dashboard-charts-title {
    margin-top: 18px !important;
    font-size: 1.1em !important;
    text-align: left !important;
  }
  .dashboard-charts {
    width: 100vw !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    overflow-y: hidden !important;
    padding: 0 !important;
    margin-left: 0 !important;
    height: auto !important;
  }
  .chart {
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 0 !important;
    height: 45vh !important;
    min-height: 220px !important;
    max-height: 60vh !important;
    padding: 0 !important;
  }
  #lancamentosChart {
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 0 !important;
    height: 45vh !important;
    min-height: 220px !important;
    max-height: 60vh !important;
    display: block !important;
  }
}




