 body {
            font-family: 'Segoe UI', sans-serif;
            margin: 0;
            background-color: #f2f4f8;
        }

        header {
            background-color: #004d7a;
            color: white;
            padding: 20px;
            text-align: center;
            font-size: 24px;
            font-weight: bold;
        }

        main {
            max-width: 1200px;
            margin: 30px auto;
            background-color: white;
            padding: 25px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
            border-radius: 8px;
        }

        h1 {
            margin-bottom: 20px;
            text-align: center;
            color: #004d7a;
        }

        .search-container {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 25px;
        }

        .search-input {
            padding: 10px;
            font-size: 16px;
            border: 1px solid #ccc;
            border-radius: 6px;
            width: 300px;
        }

        .search-button {
            padding: 10px 20px;
            background-color: #007bff;
            border: none;
            color: white;
            font-weight: bold;
            border-radius: 6px;
            cursor: pointer;
        }

        .search-button:hover {
            background-color: #0056b3;
        }

        .limpar-pesquisa {
            padding: 10px;
            background-color: #dc3545;
            color: white;
            text-decoration: none;
            border-radius: 6px;
        }

        .limpar-pesquisa:hover {
            background-color: #a71d2a;
        }

        .table-container {
            overflow-x: auto;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
        }

        th, td {
            padding: 12px 10px;
            border-bottom: 1px solid #ddd;
        }

        th {
            background-color: #007bff;
            color: white;
        }

        tr:hover {
            background-color: #f1f1f1;
        }

        footer {
            background-color: #004d7a;
            color: white;
            text-align: center;
            padding: 15px;
            margin-top: 40px;
        }

        @media (max-width: 768px) {
            .search-input {
                width: 100%;
            }

            .search-container {
                flex-direction: column;
                align-items: center;
            }
        }