/**
 * Jakarta Islamic School
 * Auto-separated stylesheet for: public/students/statistik.php
 */

:root { 
            --primary-color: #0284c7; 
            --accent-color: #0369a1;
            --bg-body: #f0f9ff; 
            --text-dark: #1e293b; 
        }
        body { font-family: 'Poppins', sans-serif; background: var(--bg-body); color: var(--text-dark); }
        
        .navbar-custom { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid #bae6fd; }
        .content-card { background: #ffffff; border: 1px solid #bae6fd; border-radius: 1.5rem; box-shadow: 0 10px 25px -5px rgba(2, 132, 199, 0.05); }
        
        .grid-materi { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; }
        .materi-box { border-radius: 1.25rem; padding: 1.5rem; border: 2px solid #bae6fd; transition: all 0.3s ease; cursor: pointer; background: #e0f2fe; }
        .materi-box:hover { transform: translateY(-4px); border-color: var(--primary-color); box-shadow: 0 8px 20px rgba(2, 132, 199, 0.15); }
        .materi-box.active { background: #bae6fd; border-color: var(--primary-color); box-shadow: 0 6px 18px rgba(2, 132, 199, 0.25); }

        .typing-text { border-right: 2px solid var(--primary-color); white-space: pre-wrap; animation: blink 0.75s step-end infinite; }
        @keyframes blink { from, to { border-color: transparent } 50% { border-color: var(--primary-color); } }
        
        .step-box { background: #f8fafc; border-left: 5px solid var(--primary-color); border-radius: 0.75rem; padding: 1.25rem; font-size: 0.95rem; line-height: 1.8; }
        .interactive-box { background: linear-gradient(135deg, #e0f2fe 0%, #ffffff 100%); border-radius: 1.25rem; border: 2px dashed #7dd3fc; }

        .mini-table { font-size: 0.85rem; width: 100%; border-collapse: collapse; }
        .mini-table th, .mini-table td { border: 1px solid #cbd5e1; padding: 6px 10px; text-align: center; }
        .mini-table th { background-color: #e0f2fe; color: #0369a1; }
        
        .chart-container { display: flex; align-items: flex-end; justify-content: space-around; height: 120px; padding-top: 20px; border-bottom: 2px solid #cbd5e1; }
        .chart-bar { width: 35px; background: var(--primary-color); border-radius: 6px 6px 0 0; position: relative; transition: height 0.4s; }
        .chart-bar span { position: absolute; top: -22px; left: 0; right: 0; text-align: center; font-size: 0.75rem; font-weight: bold; color: #0369a1; }
        .chart-label { font-size: 0.75rem; text-align: center; margin-top: 5px; font-weight: 500; }