   <style>
        /* Modern, clean styling for better readability */
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            background-color: #f4f7fc;
            margin: 0;
            padding: 20px;
            color: #1e2a3a;
        }

        .report-container {
            max-width: 1400px;
            margin: 0 auto;
            background-color: white;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            border-radius: 16px;
            padding: 24px 28px 40px 28px;
        }

        .header-title {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            flex-wrap: wrap;
            border-bottom: 3px solid #2c7da0;
            margin-bottom: 24px;
            padding-bottom: 12px;
        }

        .institution {
            font-size: 1.6rem;
            font-weight: 700;
            color: #0b3b4f;
            letter-spacing: -0.3px;
        }

        .report-main-title {
            font-size: 1.5rem;
            font-weight: 600;
            background: #e9f0f5;
            padding: 10px 16px;
            border-radius: 40px;
            margin: 20px 0 20px 0;
            color: #1f5068;
            text-align: center;
        }

        /* Print button styling */
        .print-hide {
            text-align: right;
            margin-bottom: 16px;
        }
        .print-btn {
            background-color: #2c7da0;
            border: none;
            border-radius: 40px;
            padding: 8px 18px;
            color: white;
            font-weight: bold;
            cursor: pointer;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: 0.2s;
            box-shadow: 0 1px 3px rgba(0,0,0,0.2);
        }
        .print-btn:hover {
            background-color: #1f5e7a;
        }

        /* Table styling – clean, readable, with hover effect */
        .data-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
            border-radius: 14px;
            overflow: hidden;
        }

        .data-table th {
            background-color: #1f5068;
            color: white;
            padding: 12px 8px;
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 0.3px;
            border: 1px solid #2e6a89;
            text-align: center;
            vertical-align: middle;
        }

        .data-table td {
            border: 1px solid #cbdbe2;
            padding: 10px 8px;
            vertical-align: middle;
            background-color: #ffffff;
            transition: background 0.1s ease;
        }

        .data-table tr:hover td {
            background-color: #f8fbfe;
        }

        .th-sub {
            background-color: #2c6e8f;
            font-weight: 500;
            font-size: 0.8rem;
        }

        .program-name {
            font-size: 0.85rem;
            line-height: 1.35;
            font-weight: 500;
            color: #0a2f3f;
        }

        .badge-count {
            font-weight: 700;
            background: #eef2fa;
            display: inline-block;
            padding: 2px 8px;
            border-radius: 30px;
            font-size: 0.85rem;
        }

        .number-cell {
            text-align: center;
            font-weight: 600;
            background-color: #fefef5;
        }

        .evaluation-good {
            background-color: #e3f5ec;
            font-weight: 600;
        }

        .footer-note {
            margin-top: 28px;
            font-size: 0.8rem;
            background: #eef3f7;
            padding: 14px 20px;
            border-radius: 20px;
            border-left: 5px solid #2c7da0;
            color: #2c3e4e;
        }

        @media print {
            body {
                background: white;
                padding: 0;
                margin: 0;
            }
            .report-container {
                box-shadow: none;
                padding: 10px;
                max-width: 100%;
            }
            .print-hide {
                display: none !important;
            }
            .data-table th {
                background-color: #ccc !important;
                color: black;
                print-color-adjust: exact;
            }
            .data-table td {
                border: 1px solid #aaa;
            }
            .footer-note {
                background: #f0f0f0;
                print-color-adjust: exact;
            }
        }

        .align-left {
            text-align: left;
        }
        .align-center {
            text-align: center;
        }
        .small-meta {
            font-size: 0.7rem;
            font-weight: normal;
            display: block;
            color: #e0eef5;
        }
        .subnote {
            font-size: 0.7rem;
            color: #2c697e;
        }
    </style>