/* Sticky Footer CSS - ทำให้ footer ติดด้านล่างเสมอ */

/* ทำให้ html และ body เต็มความสูง */
html {
  height: 100%;
}

body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

/* Main content ขยายเต็มพื้นที่ที่เหลือ */
body > *:not(footer) {
  flex-shrink: 0;
}

/* ให้ content area ขยายเต็มพื้นที่ */
main,
.main-content,
.page-container {
  flex: 1 0 auto;
}

/* Footer จะอยู่ด้านล่างเสมอ */
.site-footer {
  flex-shrink: 0;
  margin-top: auto;
}

/* สำหรับหน้าที่มี sidebar */
@media (min-width: 1024px) {
  body.has-sidebar {
    display: block;
  }

  body.has-sidebar .site-footer {
    margin-top: 0;
  }
}
