 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: #000;
            color: #fff;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px;
        }
        
        header {
            text-align: center;
            padding: 20px;
            margin-bottom: 30px;
            width: 100%;
            max-width: 1200px;
        }
        
        h1 {
            font-size: 2.8rem;
            margin-bottom: 10px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            background: linear-gradient(to right, #ff7e5f, #feb47b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 30px;
        }
        
        .stats-bar {
            display: flex;
            justify-content: space-around;
            padding: 15px;
            background: rgba(0, 0, 0, 0.2);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .stat {
            text-align: center;
        }
        
        .stat-value {
            font-size: 1.2rem;
            font-weight: bold;
            color: #ff7e5f;
        }
        
        .stat-label {
            font-size: 0.9rem;
            opacity: 0.7;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .scrolling-container {
            height: 80vh;
            overflow-y: auto;
            position: relative;
        }
        
        .scrolling-viewport {
            position: relative;
            height: 100%;
            overflow: hidden;
        }
        
        .scrolling-content {
            max-height: 80vh;
            overflow-y: auto;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
        }
        .scrolling-content {
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox, Safari 18.2+, Chromium 121+ */
}
.scrolling-content::-webkit-scrollbar { 
    display: none;  /* Older Safari and Chromium */
}
        
        .person-card {
            padding: 15px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            /* max-height: 120px; */
            box-sizing: border-box;
        }
        
        .person-card:hover {
            background: rgba(255, 255, 255, 0.1);
        }
       
        
        .person-details {
            flex-grow: 1;
            min-width: 0;
        }
        .names{
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            /* margin-bottom: 10px; */
            margin-top: 10px;
            
        }
        .en-name {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 5px;
            color: #fff;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .ar-name {
            font-size: 1.3rem;
            margin-bottom: 8px;
            direction: rtl;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .info-row {
            display: flex;
            justify-content: space-between;
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        .info-label {
            opacity: 0.7;
        }
        
        .controls {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .btn {
            padding: 12px 25px;
            border: none;
            border-radius: 50px;
            background: linear-gradient(45deg, #ff7e5f, #feb47b);
            color: white;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        }
        
        .loading {
            text-align: center;
            padding: 50px;
            font-size: 1.2rem;
        }
        
        .progress-container {
            width: 100%;
            max-width: 1200px;
            margin-bottom: 20px;
        }
        
        .progress-bar {
            height: 10px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            overflow: hidden;
        }
        
        .progress {
            height: 100%;
            background: linear-gradient(90deg, #ff7e5f, #feb47b);
            width: 0%;
            transition: width 0.3s ease;
        }
        
        @media (max-width: 768px) {
            .person-card {
                height: auto;
                padding: 12px;
            }
            
           
            
            .en-name {
                font-size: 1rem;
            }
            
            .ar-name {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 600px) {
            .names{
                margin: 0px;
            }
            .person-card{
                padding: 7px;
            }
        }

    