
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
        
        @import url('https://fonts.googleapis.com/css2?family=Amiri&display=swap');

        .arabic {
            font-family: 'Amiri', serif;
            font-size: 1.2rem;
            direction: rtl;
            text-align: right;
        }
        
        :root {
            --primary: #4f46e5;
            --secondary: #06b6d4;
            --accent: #f97316;
            --background: #f0f9ff;
            --text: #1e293b;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #f0f9ff 0%, #d8f3f6 100%);
            min-height: 100vh;
            color: var(--text);
			
        }
        
        .glass {
            background: rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.18);
            box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .btn-secondary {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
            color: white;
            transition: all 0.3s ease;
        }
        
        .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .timer {
            position: fixed;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.9);
            padding: 10px 15px;
            border-radius: 50px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
        }
        
        .question-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .option {
            cursor: pointer;
            padding: 10px 15px;
            border-radius: 8px;
            margin-bottom: 10px;
            transition: all 0.3s ease;
        }
        
        .option:hover {
            background: rgba(79, 70, 229, 0.1);
            transform: translateX(5px);
        }
        
        .option.selected {
            background-color: #a7f3d0 !important; /* Bright green */
            border: 2px solid #10b981 !important;
            transform: translateX(5px);
        }
        
        .matching-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .matching-question {
            flex: 1;
            padding: 10px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.5);
        }
        
        .matching-answer {
            flex: 1;
            padding: 10px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.5);
            margin-left: 15px;
            cursor: pointer;
        }
        
        .matching-answer.selected {
            background: rgba(79, 70, 229, 0.2);
            border: 2px solid var(--primary);
        }
        
        .essay-question {
            margin-bottom: 20px;
        }
        
        .essay-answer {
            width: 100%;
            min-height: 150px;
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #ccc;
            resize: vertical;
        }
        
        .admin-panel {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .admin-card {
            padding: 20px;
            margin-bottom: 20px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.8);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .tab-button {
            padding: 10px 20px;
            border: none;
            background: transparent;
            cursor: pointer;
            font-weight: 600;
            position: relative;
        }
        
        .tab-button.active {
            color: var(--primary);
        }
        
        .tab-button.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--primary);
            border-radius: 3px;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
        }
        
        table th, table td {
            padding: 12px;
            text-align: left;
            border-bottom: 1px solid #e2e8f0;
        }
        
        table th {
            background: rgba(79, 70, 229, 0.1);
            font-weight: 600;
        }
        
        .logo {
            max-width: 100px;
            margin-bottom: 20px;
        }
        
        @media (max-width: 768px) {
            .question-container, .admin-panel {
                padding: 15px;
            }
            
            .matching-item {
                flex-direction: column;
            }
            
            .matching-answer {
                margin-left: 0;
                margin-top: 10px;
                width: 100%;
            }
            
            .timer {
                top: 10px;
                right: 10px;
                padding: 8px 12px;
                font-size: 14px;
            }
        }
        
        
        .fullscreen-warning-modal {
            background-color: rgba(0,0,0,0.9) !important;
            max-width: 600px !important;
            font-size: 1.2rem !important;
        }
        
        .fullscreen-warning-modal .swal2-title {
            color: #ef4444 !important;
            font-size: 1.8rem !important;
        }
        
        .fullscreen-warning-modal .swal2-content {
            font-size: 1.3rem !important;
            color: white !important;
        }
        
        #battery-status, #lang-toggle, #wifi-toggle {
          user-select: none;
          transition: opacity 0.3s ease;
        }

       * Tambahkan di bagian style */
        #font-controls button {
            transition: all 0.2s ease;
            padding: 2px 5px;
            border-radius: 4px;
        }
        
        #font-controls button:hover {
            background-color: rgba(79, 70, 229, 0.1);
        }
        
        .font-small {
            font-size: 1rem;
        }
        
        .font-normal {
            font-size: 1.5rem;
        }
        
        .font-large {
            font-size: 2rem;
        }
        
        .font-xl {
            font-size: 3rem;
        }
        
        .swal2-popup .swal2-html-container {
            max-height: 70vh;
            overflow-y: auto;
            padding: 0 1em;
        }
        
        .swal2-popup .swal2-html-container table {
            width: 100%;
            border-collapse: collapse;
            margin: 10px 0;
        }
        
        .swal2-popup .swal2-html-container th, 
        .swal2-popup .swal2-html-container td {
            border: 1px solid #ddd;
            padding: 8px;
            text-align: left;
        }
        
        .swal2-popup .swal2-html-container th {
            background-color: #f2f2f2;
        }
        
        #summary-header {
            background-color: white;
            position: sticky;
            top: 0;
            z-index: 50;
        }
		
		#exam-footer {
			z-index: 50;
		}
