/* Estilos para o cabeçalho preto */
.bg-black {
    position: relative;
    background: url('https://eskalada.komvos.site/bg.jpg') no-repeat center center fixed;
    background-size: cover;
    /* opcional: cor de fallback */
    background-color: #000;
    overflow: hidden; /* evita scroll de pseudo-elemento */
}

.bg-black::before {
    content: "";
    position: absolute;
    inset: 0; /* top:0; right:0; bottom:0; left:0; */
    background: rgba(0, 0, 0, 0.6); /* aqui você controla a opacidade do preto */
    pointer-events: none;
    z-index: 0;
}

/* garante que o conteúdo fique acima do overlay */
.bg-black > * {
    position: relative;
    z-index: 1;
}


/* Ajustes para as fotos dos gestores */
.table img {
    object-fit: cover;
}

/* Melhorias no dropdown de meses */
#seletor-mes .dropdown-menu {
    max-height: 400px;
    overflow-y: auto;
}

/* Destaque para o mês atual no dropdown */
#seletor-mes .dropdown-item.active {
    background-color: #0d6efd;
    color: white;
}

/* Ajustes no gráfico */
#grafico-evolucao {
    max-height: 400px;
}

/* Efeito hover nas linhas da tabela */
.table-hover tbody tr:hover {
    transform: scale(1.01);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}

/* Badges de conquistas */
.badge {
    font-size: 0.75em;
    padding: 0.5em 0.75em;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .table img {
        width: 40px;
        height: 40px;
    }
    
    .badge {
        display: block;
        margin-bottom: 0.5em;
    }
}

footer{
	background: #000;
	padding: 25px 10px;
	color:#cacaca;
	font-size: 11pt;
}