html, body {
    overflow-x: hidden !important;
    position: relative;
    width: 100%; max-width: 100%; height: 100%;
    margin: 0; padding: 0;
    touch-action: manipulation;
    -webkit-text-size-adjust: 100%;
    background-color: #f3f4f6;
    font-family: 'Poppins', sans-serif;
}
* { box-sizing: border-box !important; }
.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

.animate-fade-in { animation: fadeIn 0.3s ease-in-out; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* SVG Donut Animation */
.chart-circle { transition: stroke-dashoffset 1s cubic-bezier(0.4, 0, 0.2, 1), stroke 0.5s ease; }
