/* style.css */
body {
    font-family: 'Kanit', 'Inter', sans-serif;
    background-color: #121826; /* พื้นหลังสีเทาเข้ม-น้ำเงิน */
    color: #cbd5e1; /* สีตัวอักษรหลัก (เทาอ่อน) */
}

.text-glow {
    text-shadow: 0 0 10px rgba(99, 102, 241, 0.6); /* ปรับสี Glow ให้เข้ากับธีม */
}

/* ปรับปรุง Scrollbar สำหรับเบราว์เซอร์ Webkit (Chrome, Safari) */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #1f2937;
}
::-webkit-scrollbar-thumb {
    background: #4f46e5;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #6366f1;
}