        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 12px;
            background-color: #f4f4f4;
            color: #333;
            transition: background-color 0.3s, color 0.3s;
        }
        .container {
            max-width: 1000px;
            margin: 20px auto;
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: background 0.3s, color 0.3s;
        }
        h2 {
            text-align: center;
            margin-bottom: 20px;
        }
        .search-box {
            display: flex;
            justify-content: center;
            margin-bottom: 15px;
        }
        .search-box input {
            width: 80%;
            padding: 10px;
            border-radius: 5px;
            border: 1px solid #ccc;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
            
        }
        th, td {
            border: 1px solid #ddd;
            padding: 12px;
            text-align: left;
        }
        th {
            background-color: #007BFF;
            color: white;
            
        }
        tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        .pagination {
            text-align: center;
            margin-top: 20px;
        }
        .pagination a {
            margin: 0 5px;
            padding: 8px 12px;
            text-decoration: none;
            background-color: #007BFF;
            color: white;
            border-radius: 5px;
        }
        .pagination a:hover {
            background-color: #0056b3;
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .search-box input {
                width: 70%;
            }
            table, th, td {
                font-size: 14px;
            }
            .pagination a {
                padding: 6px 10px;
            }
            /* Esconder a coluna de Uptime em telas pequenas */
            td:nth-child(4), th:nth-child(4) {
               /* display: none;*/
            }
            /* Adicionar rolagem horizontal à tabela */
            .table-container {
                overflow-x: auto;
            }
        }

        @media (max-width: 480px) {
            .search-box input {
                width: 60%;
            }
            table, th, td {
                font-size: 12px;
            }
            .pagination a {
                padding: 4px 8px;
            }
            /* Esconder a coluna de Uptime também para telas muito pequenas */
            td:nth-child(4), th:nth-child(4) {
                /*display: none;*/
            }
            /* Garantir que a tabela tenha rolagem horizontal em dispositivos muito pequenos */
            .table-container {
                overflow-x: auto;
            }
        }

        /* Estilo melhorado para o ID */
        .client-id {
            background-color: #f0f8ff;
            padding: 5px 10px;
            border-radius: 5px;
            font-weight: bold;
            color: #007BFF;
            display: inline-block;
            width: 100%;
            text-align: center;
        }
        
        .navbar {
        background: #007BFF;
        padding: 10px;
        /*border-radius: 8px;*/
        margin-bottom: 20px;
    }
    .navbar ul {
        list-style: none;
        display: flex;
        justify-content: center;
        padding: 0;
    }
    .navbar ul li {
        margin: 0 10px;
    }
    .navbar ul li a {
        text-decoration: none;
        color: white;
        font-weight: bold;
        padding: 8px 12px;
        border-radius: 5px;
        transition: background 0.3s;
    }
    .navbar ul li a:hover {
        background: #0056b3;
    }
    

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Preloader (Spinner) */
        #preloader,#pre{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            display: none;
        }
        .spinner {
            border: 5px solid #ccc;
            border-top: 5px solid #007bff;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            animation: spin 1s linear infinite;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }


        

        
        