        /* Estilo geral do corpo e da página */
        html, body {
            height: 100%; /* Garantir altura total */
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
            overflow: hidden; /* Evitar rolagem extra */
        }
        body {
            font-size: 14px;
            line-height: 1.5;
        }
		
		.container {
            flex: 1;
            overflow-y: auto;
            padding-top: 60px; /* Ajuste para a altura da div .topo + div .filtros */
            padding-bottom: 100px; /* Espaço para o rodapé */
        }
		
		h1 {
            margin: 0px;
            font-size: 20px;
            font-weight: bold;
            color: white;
            text-transform: uppercase;
        }
        .topo {
            border-radius: 3px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-align: center;
            width: 100%;
            background-color: #004085;
            margin: 0 auto;
            box-sizing: border-box;
            padding: 10px;
            height: 60px; /* Altura fixa da div .topo */
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
            border-radius: 0px;
            border: 1px solid #004085;
            position: fixed; /* Fixa no topo */
            top: 0; /* Alinha ao topo */
            left: 0; /* Alinha à esquerda */
            right: 0; /* Alinha à direita */
            z-index: 1000; /* Garante que fique acima de outros elementos */
        }
		
        /* Container que envolve a lista de torneios */
        .caixalistaestexist-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center; /* Centraliza as caixas na página */
            padding: 20px;
        }
        /* Estilo da caixa de cada torneio */
        .caixalistaestexist {
            width: 100%;
            max-width: 400px; /* Largura máxima */
            margin-bottom: 20px; /* Espaçamento entre as caixas */
            background-color: rgba(255, 255, 255, 0.85);
            border-radius: 5px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            overflow: hidden; /* Evita que o conteúdo ultrapasse o container */
            display: flex;
            flex-direction: column;
        }
        /* Header da caixa */
        .caixa-header {
            box-sizing: border-box;
            color: #004085;
            padding: 5px;
            text-align: center;
            font-size: 14px;
            font-weight: bold;
            width: 100%; /* Ocupa 100% da largura */
			
        }
        /* Container dos botões */
        .botoes-container {
            display: flex;
            justify-content: space-around; /* Distribui os botões igualmente */
            padding: 10px;
        }
        /* Estilo dos botões */
        .botao {
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            transition: transform 0.3s ease;
        }
        .botao:hover {
            transform: translateY(-3px);
        }
        .botao i {
            font-size: 60px; /* Tamanho maior dos ícones */
            color: #004085; /* Cor dos ícones */
        }
        /* Efeito de fade-out */
        .fade-out {
            animation: fadeOut 0.5s forwards; /* Efeito fade-out com duração de 0.5 segundos */
        }
        @keyframes fadeOut {
            0% {
                opacity: 1;
            }
            100% {
                opacity: 0;
            }
        }
        /* Estilo para o rodapé */
        footer {
            background-color: #333;
            color: white;
            padding: 2px 0; /* Margem interna de 2px no topo e na base */
            position: absolute;
            bottom: 0;
            width: 100%;
            text-align: center;
            font-size: 10px; /* Tamanho da fonte */
            line-height: 1.2; /* Altura da linha para evitar espaçamento extra */
        }
        footer i {
            margin-right: 5px;
        }
        /* Melhorias responsivas para dispositivos móveis */
        @media (max-width: 768px) {
            .caixalistaestexist {
                width: 90%; /* Reduz a largura em dispositivos móveis */
            }
        }