/*

File: main.css

Deskripsi: Pengaturan global, reset tambahan, dan kustomisasi dasar di luar Tailwind.
*/

/* STREAMING_CHUNK:Configuring global smooth scrolling and anti-aliasing... */
html {
scroll-behavior: smooth;
}

body {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

/* STREAMING_CHUNK:Styling custom text selection color... /
::selection {
background: #0ea5e9; / Sky 500 (Biru Langit Profesional) /
color: #ffffff; / Putih */
}
::-moz-selection {
background: #0ea5e9;
color: #ffffff;
}

/* STREAMING_CHUNK:Customizing scrollbar for Webkit browsers (Chrome, Edge, Safari)... */
::-webkit-scrollbar {
width: 10px;
}

::-webkit-scrollbar-track {
background: #0f172a; /* Slate 900 (Latar belakang scrollbar sangat gelap) */
}

::-webkit-scrollbar-thumb {
background: #334155; /* Slate 700 (Abu-abu profesional) */
border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
background: #0ea5e9; /* Sky 500 (Biru Langit saat disentuh) */
}