/* filters css  */
#posts-filter-form {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.filter-input {
  font-size: 16px;
  padding: 6px 10px;
  cursor: pointer;
}
#search-button {
  border: none;
  background: #3498db;
  border-radius: 4px;
  padding: 5px 20px;
  transition: all 0.2s ease-in-out;
  color: #fff;
}
#search-button:hover {
  background: #2980b9;
}
#reset-button {
  border: none;
  background: #e74c3c;
  border-radius: 4px;
  padding: 5px 20px;
  transition: all 0.2s ease-in-out;
  color: #fff;
}
#reset-button:hover {
  background: #c0392b;
}
/* table css  */
#ept-posts-table {
  width: 100%;
  border-collapse: collapse;
}
#ept-posts-table,
#ept-posts-table tr,
#ept-posts-table td,
#ept-posts-table th {
  border: 1px solid #ddd;
}
.ept-title {
  text-decoration: none !important;
}
.ept-title,
.ept-date,
.ept-author {
  font-size: 16px;
}
.ept-no-post{
    font-size: 16px;
    color: #e74c3c;
}
#ept-posts-table th {
  font-size: 16px;
}
#ept-posts-table td {
  padding: 2px 5px;
}
/* pagination css  */
.ept-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.ept-pagination .left {
  display: flex;
  gap: 10px;
}

.ept-pagination .right {
  display: flex;
  gap: 10px;
  align-items: center;
}

.ept-pagination .left a,
.ept-pagination .right select {
  border: 1px solid;
  padding: 5px 15px;
  border-radius: 3px;
  text-decoration: none !important;
  display: inline-block !important;
  font-size: 16px;
}
.ept-pagination .left a:hover {
  background-color: #2980b9;
  color: #fff;
}

.ept-pagination .right select {
  padding: 7px;
  border-radius: 3px;
  cursor: pointer;
}
