/* เพิ่มการนำเข้า Font Prompt */
@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@300;400;500;600;700&family=Sarabun:wght@300;400;500;600;700&display=swap');

body {
    background-color: #f0f2f5; /* สีพื้นหลังโทนเทาอ่อน สบายตา */
    /* เพิ่ม Gradient พื้นหลังจางๆ เพื่อมิติ */
    background-image: 
        radial-gradient(at 0% 0%, rgba(16, 185, 129, 0.08) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(6, 78, 59, 0.05) 0px, transparent 50%);
    background-attachment: fixed;
    font-family: 'Sarabun', sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* ใช้ Font Prompt กับหัวข้อทั้งหมด */
h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: 'Prompt', sans-serif;
}

/* ปรับเงาให้นุ่มนวลและมี Animation */
.card-shadow {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(255,255,255,0.7);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-shadow:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
    transform: translateY(-2px);
}

/* Glass Effect สำหรับ Navbar หรือ Card พิเศษ */
.glass {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* ปุ่ม FAB */
.fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 40;
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.4); /* เงาสีเขียว */
}

/* Scrollbar สวยๆ */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}