* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f5f5f5;
            color: #333;
            margin: 20px;
        }

        h1 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #4A4A4A;
        }

        .search-box {
            text-align: center;
            margin-bottom: 30px;
        }

        .search-box input {
            width: 50%;
            padding: 12px;
            font-size: 16px;
            border: 1px solid #ccc;
            border-radius: 30px;
            outline: none;
            transition: box-shadow 0.3s;
        }

        .search-box input:focus {
            box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
            border-color: #888;
        }

        .page-links {
            text-align: center;
            margin-top: 15px;
        }

        .page-links button {
            padding: 10px 20px;
            font-size: 1rem;
            margin: 15px;
            border: none;
            border-radius: 50px;
            background-color: #4A4A4A;
            color: #fff;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .page-links button:hover {
            background-color: #ffffff;
            color: #4A4A4A;
        }

        footer {
            text-align: center; /* Alinha o conteúdo ao centro */
            padding: 20px; /* Espaçamento interno */
            color: #4A4A4A; /* Cor do texto */
            font-size: 1rem; /* Tamanho da fonte */
            margin-top: 20px; /* Espaçamento superior */
        }
        
        footer a {
            color: #1e90ff; /* Cor dos links no footer */
            text-decoration: none; /* Remove o sublinhado */
            font-weight: bold; /* Deixa o texto em negrito */
        }
        
        footer a:hover {
            color: #ffcc00; /* Cor do link ao passar o mouse */
            text-decoration: underline; /* Adiciona sublinhado no hover */
        }

        table {
            width: 100%;
            border-collapse: collapse;
            margin: auto;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        thead {
            background-color: #e0e0e0;
        }

        th, td {
            padding: 12px 20px;
            text-align: center;
        }

        th {
            font-weight: bold;
            color: #333;
            font-size: 1rem;
            text-transform: uppercase;
        }

        tbody tr:nth-child(even) {
            background-color: #f9f9f9;
        }

        tbody tr:nth-child(odd) {
            background-color: #fff;
        }

        tbody tr:hover {
            background-color: #f1f1f1;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        tbody tr td {
            font-size: 0.9rem;
            color: #555;
        }

        tbody tr td:first-child {
            font-weight: bold;
        }

        tbody tr td[colspan] {
            background-color: #f0f0f0;
            color: #4A4A4A;
            font-weight: bold;
        }

        @media (max-width: 768px) {
            .search-box input {
                width: 80%;
            }

            th, td {
                padding: 10px 12px;
                font-size: 0.85rem;
            }

            h1 {
                font-size: 2rem;
            }
        }