body {
            font-family: Arial, sans-serif;
            background-color: #f4f4f4;
            margin: 2px;
            padding: 0;
            display: flex;

            justify-content: center;
            
            flex-direction: column;
            

        }
        .container {
            /*width: 95%;*/
            /*max-width: 1200px;*/
            background-color: #fff;
            padding: 20px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            /*margin-top: 20px;*/
        }
        h1 {
            text-align: center;
            color: #333;
            font-size: 24px;
            margin-bottom: 20px;
        }
        .filtros {
            margin-bottom: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }
        .filtros input, .filtros select {
            padding: 8px;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 14px;
        }
        .filtros button {
            padding: 8px 16px;
            background-color: #007bff;
            color: #fff;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
        }
        .filtros button:hover {
            background-color: #0056b3;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }
        table, th, td {
            border: 1px solid #ddd;
        }
        th, td {
            padding: 3px;
            text-align: center;
            font-size: 11px;
        }
        th {
            background-color: #646364;
            color: #fff;
        }
        tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        tr:hover {
            background-color: #f1f1f1;
        }
        @media (max-width: 768px) {
            .filtros {
                flex-direction: column;
                align-items: center;
            }
            .filtros input, .filtros select {
                width: 100%;
                max-width: 300px;
            }
            table, th, td {
                font-size: 9px;
            }
        }


