/* 🔹 Estilo Geral */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f6f9;
    color: #333;
}

/* 🔹 Sidebar */
.sidebar {
    width: 250px;
    height: 100vh;
    background-color: #214fc1;
    color: white;
    padding: 20px;
    position: fixed;
    top: 0;
    left: 0;
}
#filtro{
    margin-top: 30px;
    margin-bottom: 30px;
}

.sidebar-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
}

.sidebar-menu li {
    margin: 10px 0;
}

.sidebar-menu li a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    display: block;
    padding: 10px;
    border-radius: 5px;
}

.sidebar-menu li a:hover {
    background-color: #193b9a;
}

/* 🔹 Conteúdo Principal */
.main-content {
    margin-left: 260px;
    width: calc(100% - 260px);
    padding: 20px;
}

/* 🔹 Header */
header {
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.user-info {
    font-size: 1.2rem;
    color: #214fc1;
}

#funnelChartContainer {
    width: 100%;
    max-width: 600px; /* Ajuste conforme necessário */
    height: 400px; /* Defina um tamanho fixo */
    overflow: hidden;
}

/* 🔹 Cards do Relatório */
.card {
    border: none;
    border-radius: 10px;
    background: white;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
    padding: 9px;
    text-align: center;
    height: 150px;
}

.card:hover {
    transform: scale(1.05);
}

/* 🔹 Gráficos */
canvas {
    margin: 20px 0;
    padding: 10px;
    display: none;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}
