/* assets/css/style.css */
body { 
    font-family: 'Sarabun', sans-serif; 
    background-color: #f4f6f9; 
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
/* โทนสีโรงเรียน */
.bg-school { background: linear-gradient(135deg, #7f0000, #b71c1c) !important; }
.text-school { color: #b71c1c !important; }

/* เอฟเฟกต์ตอนเอาเมาส์ชี้การ์ดข่าว */
.news-card-hover { transition: transform 0.2s ease, box-shadow 0.2s ease; }
.news-card-hover:hover { transform: translateY(-5px); box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important; }

/* จัดการความสูงของเนื้อหากับ Sidebar */
.main-wrapper { flex: 1; }
/* ================ Footer styles (ย้ายมาจาก footer.php inline) ================ */
.footer-link-hover {
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}
.footer-link-hover:hover {
    color: #fff !important;
    transform: translateX(5px);
}
.hover-text-white:hover {
    color: white !important;
    opacity: 1 !important;
}
.transition-all {
    transition: all 0.3s ease;
}
.border-school {
    border-color: #dc3545 !important;
}
.social-icon {
    width: 36px;
    height: 36px;
    transition: all 0.3s ease;
}
.social-icon:hover {
    background-color: white;
    color: #212529 !important;
    transform: translateY(-3px);
}

/* ================ Sidebar styles (ย้ายมาจาก sidebar.php inline) ================ */
#sidebarMenu .nav-link {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
