@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500&family=Inter:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons+Round');

body {
    font-family: 'Inter', sans-serif;
    background-color: #0F172A;
    color: #F8FAFC;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.font-mono {
    font-family: 'Fira Code', monospace;
}

/* Cyber Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #1E293B; 
}
::-webkit-scrollbar-thumb {
    background: #334155; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #6366F1; 
}

/* Custom Checkbox/Radio */
input[type="checkbox"], input[type="radio"] {
    accent-color: #6366F1;
    width: 1.2rem;
    height: 1.2rem;
    cursor: pointer;
}

/* Code Block Styling */
pre {
    background-color: #0B1120 !important;
    border: 1px solid #334155;
}
