@media (max-width: 768px) {
  .source-code-page {
    flex-direction: column !important;
  }
  .filter-section {
    width: 100% !important;
    margin-bottom: 20px;
  }
}

/* article source code */
.source-code-page .post-item {
  margin-bottom: 30px; 
  padding: 10px 10px;
  border-radius: 4px;
  box-shadow: 0 0 4px #e6e6e6;
}

.source-code-page .post-thumbnail {
  overflow: hidden;
  transition: transform 0.3s ease;
}

.source-code-page .post-thumbnail img {
  transition: transform 0.3s ease;
}

.source-code-page .post-thumbnail:hover img {
  transform: scale(1.1);
}

.source-code-page .title {
  margin-top: 10px;
  margin-bottom: 10px;
}

.source-code-page .title a {
  text-decoration: none; 
  color: #000;
}

.source-code-page .title a:hover {
  text-decoration: underline;
}

.source-code-page .post-date {
  font-size: 16px;
}

.source-code-page .info {
  margin-top: 10px;
  margin-bottom: 0px;
}

.source-code-page .category-source-code {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

.source-code-page .category-source-code .badge {
  display: inline-block;
  padding: 5px 10px;
  background-color: #007bff;
  color: #ffffff;
  border-radius: 5px;
  margin-right: 5px;
  font-size: 14px;
}

/* pagination source code */
.pagination-source-code .pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.pagination-source-code .pagination a,
.pagination-source-code .pagination span {
  padding: 10px;
  margin: 0 5px;
  text-decoration: none;
  border: 1px solid #007bff;
  color: #007bff;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

.pagination-source-code .pagination a:hover {
  background-color: #007bff;
  color: #ffffff;
}

.pagination-source-code .pagination .current {
  background-color: #007bff;
  color: #ffffff;
}