   body {
            font-family: Arial;
            background: #f1f5f9;
            margin: 0;
        }

        .container {
            padding: 25px;
            max-width: 1200px;
            margin: auto;
        }

        .header {
            background: #0f172a;
            color: white;
            padding: 20px;
            border-radius: 12px;
        }

        .dashboard {
            display: flex;
            gap: 15px;
            margin: 20px 0;
        }

        .card {
            flex: 1;
            background: white;
            padding: 18px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .card-icon {
            font-size: 24px;
        }

        .text-green {
            color: #22c55e;
        }

        .text-blue {
            color: #3b82f6;
        }

        .text-gray {
            color: #6b7280;
        }

        .card-value {
            font-size: 28px;
            font-weight: bold;
        }

        .progress-card {
            background: white;
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 20px;
        }

        .progress-bar {
            height: 20px;
            background: #e5e7eb;
            border-radius: 20px;
        }

        .progress-fill {
            height: 100%;
            background: #22c55e;
            width: 0%;
            border-radius: 20px;
            transition: 0.5s;
        }

        .status-box {
            background: white;
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 20px;
        }

        .status-ok {
            border-left: 5px solid #22c55e;
        }

        .status-erro {
            border-left: 5px solid #ef4444;
        }

        .status-pendente {
            border-left: 5px solid #f59e0b;
        }

        table {
            width: 100%;
            border-collapse: collapse;
        }

        th {
            background: #0f172a;
            color: white;
            padding: 8px;
        }

        td {
            padding: 8px;
            border-bottom: 1px solid #ddd;
        }