body {
            font-size: 14px;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            height: 100vh;
        }
        .container {
            flex: 1;
            overflow-y: auto;
            padding-bottom: 145px; /* Espaço para a legenda e o rodapé */
        }
        .grupo-container {
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            overflow: hidden;
        }
        .grupo-header {
            background-color: #ff7513;
            color: black;
            font-weight: bold;
            padding: 10px;
            text-align: center;
        }
        .table {
            width: 100%;
            margin-bottom: 0;
        }
        .table th, .table td {
            padding: 8px;
            text-align: center;
        }
        .table th:nth-child(1), .table td:nth-child(1) {
            text-align: left;
        }
        .quadrado-colorido {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 20px;
            height: 20px;
            border-radius: 5px;
            color: white;
            font-size: 12px;
            font-weight: bold;
            margin-right: 5px;
        }
        .quadrado-colorido.verde {
            background-color: green;
        }
        .quadrado-colorido.azul {
            background-color: blue;
        }
        .quadrado-colorido.vermelho {
            background-color: red;
        }
        .legenda {
			display: flex;
			flex-wrap: wrap;
			gap: 3px;
			padding: 4px;
			background-color: #f9f9f9;
			border: 1px solid #ddd;
			border-radius: 5px;
			position: fixed;
			bottom: 33px; /* Ajuste para ficar acima do rodapé */
			left: 0;
			right: 0;
			z-index: 1000;
		}
        .legenda-item {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        footer {
			position: fixed;
			bottom: 0;
			left: 0;
			right: 0;
			background-color: #f8f9fa;
			padding: 0px;
			text-align: center;
			z-index: 1000;
		}
        .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;
        }

		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 */
        }