body {
            font-size: 12px;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            height: 100vh;
        }
        .container {
            flex: 1;
            overflow-y: auto;
            padding-top: 110px; /* 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 */
        }
        footer {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: #f8f9fa;
            padding: 5px;
            text-align: center;
            z-index: 1000;
            font-size: 12px;
            border-top: 1px solid #ddd;
        }
        .btn-voltar {
            margin-top: 0px;
            padding: 5px 20px;
            font-size: 16px;
            color: #0b3b85;
            background-color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: background-color 0.3s, transform 0.2s;
        }
        .btn-voltar:hover {
            background-color: #ff7513;
            transform: scale(1.05);
        }
        .btn-voltar:focus {
            background-color: #ff7513;
            outline: none;
            box-shadow: 0 0 10px rgba(11, 59, 133, 0.8);
        }
        .btn-voltar i {
            font-size: 10px;
        }
        .filtros {
            justify-content: center;
            margin-bottom: 10px;
            display: flex;
            gap: 10px;
            align-items: center;
            padding: 5px;
            background-color: #f8f9fa;
            border-bottom: 1px solid #ddd;
            position: fixed; /* Fixa a div no topo */
            top: 60px; /* Posiciona abaixo da div .topo */
            left: 0;
            right: 0;
            z-index: 999; /* Garante que fique acima do conteúdo */
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Sombra para destacar */
            height: 50px; /* Altura fixa da div .filtros */
        }
        .filtros select {
            padding: 5px;
            border-radius: 2px;
            border: 1px solid #ddd;
        }
        .tabela-jogos {
            width: 100%;
            border-collapse: collapse;
        }
        .tabela-jogos th, .tabela-jogos td {
            padding: 5px;
            border: 1px solid #ddd;
            text-align: center;
            font-size: 11px;
        }
        .tabela-jogos th {
            background-color: #f8f9fa;
        }
        .tabela-jogos thead {
            position: sticky;
            top: 0px; /* Ajuste para a altura da div .topo (60px) + div .filtros (50px) */
            z-index: 998; /* Garante que fique acima do conteúdo da tabela */
            background-color: #f8f9fa;
        }