/* assets/css/style.css */

/* ------------------------------
 * Google Font (Prompt)
 * ------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@300;400;500;700&display=swap');

body {
    font-family: 'Prompt', sans-serif;
}

/* ------------------------------
 * Glassmorphism Class
 * ------------------------------ */
.glass-card {
    background: rgba(255, 255, 255, 0.4); /* ความโปร่งใสของพื้นหลังการ์ด */
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px); /* เอฟเฟกต์กระจกฝ้า */
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ------------------------------
 * Custom Scrollbar (Optional)
 * ------------------------------ */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: #0ea5e9; /* สีน้ำเงิน (Sky 500) */
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #f97316; /* สีส้ม (Orange 500) */
}