   body {
            background: #f4f7fb;
            font-family: "Segoe UI", sans-serif;
            color: #27364b;
        }
        /* Header */
        .top-header {
            background: #123b72;
            color: #fff;
            min-height: 70px;
            display: flex;
            align-items: center;
        }
        .header-logo {
            height: 46px;
            width: 46px;
            background: #fff;
            border-radius: 50%;
            padding: 5px;
            object-fit: contain;
        }

        .portal-title {
            font-size: 19px;
            font-weight: 600;
        }

        .portal-subtitle {
            font-size: 12px;
            opacity: .8;
        }

        .logout-btn {
            color: #fff;
            border: 1px solid rgba(255,255,255,.4);
            border-radius: 7px;
            padding: 7px 16px;
            font-size: 14px;
            text-decoration: none;
        }

        .logout-btn:hover {
            background: rgba(255,255,255,.1);
            color: #fff;
        }

        /* Main */

        .main-container {
            max-width: 1150px;
            margin: 35px auto;
        }

        .welcome-box {
            background: #fff;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 4px 18px rgba(20,40,80,.06);
            margin-bottom: 25px;
        }

        .welcome-box h4 {
            font-weight: 600;
            margin-bottom: 5px;
        }

        .candidate-id {
            color: #667085;
            font-size: 14px;
        }

        /* Cards */

        .info-card {
            background: #fff;
            border: 0;
            border-radius: 12px;
            box-shadow: 0 4px 18px rgba(20,40,80,.06);
            height: 100%;
        }

        .card-title {
            font-size: 16px;
            font-weight: 600;
            color: #123b72;
            border-bottom: 1px solid #edf0f5;
            padding-bottom: 15px;
            margin-bottom: 18px;
        }

        .detail-label {
            color: #7b8491;
            font-size: 13px;
            margin-bottom: 3px;
        }

        .detail-value {
            font-weight: 500;
            font-size: 14px;
            margin-bottom: 16px;
        }

        /* Status */

        .status-card {
            background: linear-gradient(135deg, #123b72, #2864a8);
            color: #fff;
            border-radius: 12px;
            padding: 28px;
            height: 100%;
        }

        .status-badge {
            display: inline-block;
            background: #d1fae5;
            color: #087443;
            padding: 6px 14px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 600;
        }

        .download-btn {
            background: #fff;
            color: #123b72;
            border: 0;
            padding: 12px 22px;
            border-radius: 8px;
            font-weight: 600;
        }

        .download-btn:hover {
            background: #f0f4fa;
            color: #0d2d59;
        }

        /* Notice */

        .notice-box {
            background: #fff8e6;
            border-left: 4px solid #e6a700;
            border-radius: 8px;
            padding: 18px;
            margin-top: 25px;
        }

        .notice-box h6 {
            font-weight: 600;
            color: #795500;
        }

        .notice-box ul {
            margin-bottom: 0;
            padding-left: 20px;
            color: #6b5a31;
            font-size: 14px;
        }

        /* Footer */

        footer {
            text-align: center;
            color: #8a94a3;
            font-size: 12px;
            padding: 25px;
        }
