.breadcrumb {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
  padding: 10px 20px;
  border-bottom: 1px solid #c0c0c0;
  list-style: none;
  font-size: 13px;
  text-decoration: none;
}

.breadcrumb li {
  flex: 0 0 auto;      /* prevent items from shrinking */
  white-space: nowrap;  /* keep each crumb on one line */
  margin-right: 5px;   /* spacing between items */
}

.breadcrumb li:last-child {
  margin-right: 0;
}

/* Optional: hide scrollbar on WebKit browsers */
.breadcrumb::-webkit-scrollbar {
  display: none;
}

.breadcrumb li + li:before {
      content: "›";
      padding: 0 8px;
      color: #666;
      
    }

    
    .category-container {
  max-width: 800px;
  margin: 10px auto;
  padding: 0 20px;
  
}
.category-container h1 {
  font-size: 25px;
  margin-bottom: 10px;
  color: #273f8c;
}
.category-container p {
  margin-bottom: 20px;
  color: #555;
}
.post-list {
  display: grid;
  gap: 30px;
}
.post-item h2 {
  margin: 0 0 6px;
  font-size: 1.25rem;
  color: #0b3681;
}
.post-item h2 a {
  text-decoration: none;
  color: inherit;
}
.post-item time {
  font-size: 0.9rem;
  color: #777;
}
.post-summary {
  margin-top: 12px;
  color: #333;
}

.post-item {
    padding: 15px;
    background: #e8ecff;
    
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 300px;               /* ensures table is usable on narrow screens */
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

table thead {
  background-color: #0b3681;      /* primary brand color */
  
}

table th,
table td {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid #01389d;
  font-size: 13px;
}

table tbody tr:nth-child(odd) {
  background-color: #f9f9f9;      /* light stripe */
}

table tbody tr:hover {
  background-color: #e1eaff;      /* highlight on hover */
}

table a {
  color: #0b3681;
  text-decoration: none;
}

table a:hover {
  text-decoration: underline;
}

/* Compact version for small screens */
@media (max-width: 600px) {
  table th,
  table td {
    padding: 8px 12px;
  }
}

.post-summary table tbody tr:nth-child(n+5) {
  display: none;
}

.detail {
 background: #c07100;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    margin-top: 5px;
    border-radius: 5px;
    color: #ffffff;
}

.detail a {
    text-decoration: none;
    color: white;
}
