body {
  background-color: black;
  color: white;
  font-family: Verdana;
  margin: 0;
  overflow-y: auto;
  overflow-x: hidden;
}

.page {
  min-height: calc(100vh - 10px);
  margin-top: 10px;
  border: 5px solid #E0943B;
  border-radius: 8px;
  box-sizing: border-box;
  padding: 20px;

  background-image: 
    url("/images/mc_grass.png"),
    url("/images/mc_dirt.png");
  background-repeat: 
    repeat-x,
    repeat;
  background-size: 
    50px 50px,
    50px 50px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 40px 15px 20px 15px;
  padding: 12px;

  background-color: rgba(0, 0, 0, 0.7);
  border: 5px solid #E0943B;
  border-radius: 8px;
}

.filters select,
.filters input,
.filters button {
  font-family: Verdana;
  font-size: 14px;
  padding: 6px;
  border: 2px solid #E0943B;
  border-radius: 4px;
  background-color: black;
  color: white;
}

.filters select,
.filters button {
  cursor: pointer;
}

.sortControls {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
}

.post {
  background-color: rgba(0, 0, 0, 0.7);
  margin: 10px 15px;
  border: 5px solid #E0943B;
  border-radius: 8px;
  padding: 12px;
}

.post h2 {
  margin: 0 0 10px 0;
}

.postDate {
  color: #E0943B;
}

.noPosts {
  margin-left: 15px;
  font-weight: bold;
}