body {
    font-family: 'Inter', sans-serif;
    background-color: #2D2A2E; /* Monokai Base */
    color: #FCFCFA; /* Monokai Text */
}
/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-track {
    background: #2D2A2E; 
}
::-webkit-scrollbar-thumb {
    background: #403E41; 
    border-radius: 5px;
    border: 2px solid #2D2A2E;
}
::-webkit-scrollbar-thumb:hover {
    background: #727072; 
}
[v-cloak] { display: none; }

@keyframes progress {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
.animate-progress {
    animation: progress 1.5s infinite linear;
}
