@charset "UTF-8";
/* CSS Document */



    .blog-nav {
      width: 1200px;
      margin: 0 auto;
      background-color: #ffffff;
      border-radius: 12px;
      box-shadow: 0 8px 6px -6px #ccc;
      overflow: hidden;
	 font-family: 'Kanit', sans-serif;
	 margin-bottom: 80px;
    }

#blogpush{margin: 40px 0px 0px 0px; float: left;}

    .blog-header {
      background-color: #3498db;
      color: white;
      padding: 20px;
      text-align: center;
    }

    .latest-posts {
      padding: 20px;
    }

    .latest-posts h2 {
      margin-bottom: 15px;
      color: rgb(227, 23, 122);
      border-bottom: 2px solid #EB1B50;
      padding-bottom: 10px;
      font-weight: 400;
      font-family: 'Kanit', sans-serif;
       font-size: 22px;
    }

    .post-item {
      padding: 15px;
      border-bottom: 1px solid #eee;
      transition: background-color 0.3s;
    }

    .post-item:hover {
      background-color: #f9f9f9;
    }

    .post-item a {
      color: rgb(227, 23, 122);
      text-decoration: none;
      font-weight: 500;
      display: block;
	  font-size: 18px;
    }

    .post-item a:hover {
      color: rgb(237, 156, 42);
    }

    .post-date {
      font-size: 15px;
      color: #000;
      margin-top: 5px;
    }

    /* CSS-only accordion */
    .accordion {
      border-top: 1px solid #ddd;
    }
    
    .accordion-header {
      display: block;
      padding: 15px 20px;
      background-color: rgb(227, 23, 122);
      color: #fff;
      font-weight: bold;
      text-decoration: none;
      position: relative;
	  font-size: 18px;
    }

    .accordion-header:hover {
      background-color: rgb(237, 156, 42);
	  color: #000;
    }

    .accordion-header::after {
      content: "▼";
      position: absolute;
      right: 20px;
      transition: transform 0.3s;
    }

    .archive-month {
      padding: 10px 20px;
      background-color: #ccc;
      font-weight: bold;
      color: #000;
    }

    /* Hide accordion content by default */
    .accordion-content {
       max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease-out;
    }

    /* Show accordion content when checkbox is checked */
    #older-posts-toggle {
      display: none;
    }

    /* Only needs to fit ONE paginated page now, not the whole archive */
    #older-posts-toggle:checked ~ .accordion-content {
       max-height: 3000px;
    }

    #older-posts-toggle:checked ~ .accordion-header::after {
      transform: rotate(180deg);
    }

/* ============================
   NEW: Pagination (desktop)
   ============================ */

.pagination-page {
  animation: ig-fade-in 0.25s ease;
}

@keyframes ig-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.pagination-controls {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 6px;
  padding: 18px 20px;
  background-color: #ccc;
  border-top: 1px solid #ddd;
}

.page-numbers {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 6px;
}

/* !important throughout: guards against this site's own global
   button resets (display:block; width:100%; etc.) overriding these
   and stacking the buttons vertically instead of inline */
.page-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  float: none !important;
  width: auto !important;
  min-width: 36px;
  height: 36px;
  margin: 0 !important;
  padding: 0 10px !important;
  border: 1px solid rgb(227, 23, 122) !important;
  background-color: #ffffff !important;
  color: rgb(227, 23, 122) !important;
  border-radius: 6px !important;
  box-sizing: border-box !important;
  font-family: 'Kanit', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: normal !important;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

.page-btn:hover:not(:disabled):not(.active) {
  background-color: rgb(237, 156, 42) !important;
  color: #ffffff !important;
  border-color: rgb(237, 156, 42) !important;
}

.page-btn.active {
  background-color: rgb(227, 23, 122) !important;
  color: #ffffff !important;
  border-color: rgb(227, 23, 122) !important;
  cursor: default;
}

.page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
















    .table-container {
            width: 100%;
            overflow-x: auto;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            font-family: 'Kanit', sans-serif;
            font-size: 15px;
        }

        th, td {
            padding: 14px;
            text-align: left;
            border: 1px solid #000;
        }

        th {
            background-color: #000;
            color: #E3177A;
            font-weight: bold;
			font-size: 20px;
			
        }

        .feature-cell {
            font-weight: bold;
            background-color: #f0f0f0;
        }

        /* Mobile responsive styles */
        @media screen and (max-width: 768px) {
            table, thead, tbody, th, td, tr {
                display: block;
            }

            thead tr {
                position: absolute;
                top: -9999px;
                left: -9999px;
            }

            tbody tr {
                border: 2px solid #000;
                margin-bottom: 10px;
                padding: 10px;
                background-color: #fff;
            }

            td {
                border: none;
                border-bottom: 1px solid #ddd;
                position: relative;
                padding-left: 35%;
                padding-top: 8px;
                padding-bottom: 8px;
            }

            td:before {
                content: attr(data-label) ": ";
                position: absolute;
                left: 6px;
                width: 30%;
                padding-right: 10px;
                white-space: nowrap;
                font-weight: bold;
            }

            .feature-cell {
                background-color: transparent;
                font-weight: bold;
            }

            .feature-cell:before {
                content: "Feature: ";
            }
        }