/* ───── SAME STYLES AS DEMO ───── */
        .container {
            max-width: 100%;
            width: 100%;
    background: linear-gradient(180deg, #05070c 0%, #0b0f19 50%, #05070c 100%) !important;
            border: 1px solid #1e222d;
            border-radius: 12px;
            padding: 28px 32px;
            box-shadow: 0 12px 48px rgba(0,0,0,0.6);
        }
        .profile-header {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #1e222d;
            padding-bottom: 18px;
            margin-bottom: 24px;
        }
        .profile-header .user {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .profile-header .avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: #2a2e39;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            font-weight: 600;
            color: #f0b90b;
            border: 2px solid #f0b90b;
        }
        .profile-header .name {
            font-size: 20px;
            font-weight: 600;
            color: #e8eef4;
        }
        .profile-header .sub {
            font-size: 13px;
            color: #787b86;
        }
        .profile-header .badge {
            background: #1a3a2a;
            color: #00a854;
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            border: 1px solid #00a854;
        }
        .profile-header .badge.inactive {
            background: #3a1a1a;
            color: #f23645;
            border-color: #f23645;
        }
        .profile-header .actions {
            display: flex;
            gap: 10px;
        }
        .profile-header .actions button {
            background: #1e222d;
            border: 1px solid #2a2e39;
            color: #d1d4dc;
            padding: 6px 16px;
            border-radius: 4px;
            font-size: 13px;
            cursor: pointer;
            transition: background 0.2s;
            font-family: inherit;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .profile-header .actions button:hover { background: #2a2e39; }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 16px;
            margin-bottom: 28px;
        }
        .stat-card {
            background: #1e222d;
            padding: 14px 16px;
            border-radius: 8px;
            border: 1px solid #2a2e39;
        }
        .stat-card .label {
            font-size: 11px;
            text-transform: uppercase;
            color: #787b86;
            letter-spacing: 0.3px;
        }
        .stat-card .value {
            font-size: 20px;
            font-weight: 600;
            margin-top: 4px;
            color: #ffffff;
        }
        .stat-card .value.positive { color: #00bcd4; }
        .stat-card .value.negative { color: #f23645; }
        .stat-card .value.warning { color: #f0b90b; }

        .two-col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-bottom: 28px;
        }
        @media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }

        .section-card {
    background: linear-gradient(180deg, #05070c 0%, #0b0f19 50%, #05070c 100%) !important;
            border: 1px solid #2a2e39;
            border-radius: 8px;
            padding: 18px 20px;
        }
        .section-card h3 {
            font-size: 14px;
            font-weight: 600;
            color: #e8eef4;
            margin-bottom: 12px;
            border-bottom: 1px solid #2a2e39;
            padding-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .section-card h3 i { color: #f0b90b; }

        .info-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4px 16px;
        }
        .info-list .item {
            display: flex;
            justify-content: space-between;
            padding: 4px 0;
            font-size: 13px;
            border-bottom: 1px solid #1a1f2a;
        }
        .info-list .item .label { color: #787b86; }
        .info-list .item .val { color: #d1d4dc; font-weight: 700; }
        .info-list .item .val.highlight { color: #f0b90b; }
        .info-list .item .val.positive { color: #00bcd4; }
        .info-list .item .val.negative { color: #f23645; }

        .perm-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2px 16px;
        }
        .perm-list .perm-item {
            display: flex;
            justify-content: space-between;
            padding: 4px 0;
            font-size: 13px;
            border-bottom: 1px solid #1a1f2a;
        }
        .perm-list .perm-item .status.yes { color: #00bcd4; }
        .perm-list .perm-item .status.no { color: #f23645; }

        .table-wrap { overflow-x: auto; }
        .activity-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 13px;
        }
        .activity-table th {
            text-align: left;
            padding: 8px 10px;
            color: #787b86;
            font-weight: 500;
            border-bottom: 1px solid #2a2e39;
        }
        .activity-table td {
            padding: 8px 10px;
            border-bottom: 1px solid #1a1f2a;
        }
        .activity-table .positive { color: #00bcd4; }
        .activity-table .negative { color: #f23645; }

        .footer-note {
            margin-top: 20px;
            padding-top: 14px;
            border-top: 1px solid #1e222d;
            font-size: 12px;
            color: #787b86;
            text-align: center;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 8px;
        }