body {
  background: #e9e7e7;
}
#post-list div {
  background: #ffffff;
  border-radius: 8px;
}


.post h3 {
  margin-top: 0;
}

.post {
  transition: box-shadow 0.3s ease;
}

.post:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Footer styling for better contrast */
footer {
  background-color: #f8f9fa;
  border-top: 1px solid #dee2e6;
  padding: 1rem 0;
  border-radius: 8px;
}

footer a {
  color: #0056b3;
  text-decoration: none;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}

footer a:hover {
  color: #004085;
  background-color: #e3f2fd;
  text-decoration: underline;
}

footer a:focus {
  outline: 2px solid #0056b3;
  outline-offset: 2px;
}

/* Make copyright text blue to match footer links */
footer span {
  color: #0056b3;
  font-weight: 500;
}

/* Blog post styling */
.post-item {
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  padding: 1.25rem;
  margin-bottom: 1rem;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s ease-in-out;
}

.post-item:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
