/* css/style.css */
body {
  padding-top: 56px; /* Adjust if using fixed-top navbar */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-content {
    flex: 1; /* Pushes footer down */
}

.post-meta {
  color: #6c757d; /* Bootstrap's text-muted color */
  font-size: 0.9em;
  margin-bottom: 0.5rem;
}

.footer {
  background-color: #f8f9fa; /* Light background */
  padding: 2rem 0;
  margin-top: auto; /* Pushes footer down */
  color: #6c757d;
}

.card-img-top-placeholder {
    height: 200px;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 1.2rem;
}

.comment {
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}
.comment:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
.comment-meta {
    font-size: 0.85em;
    color: #6c757d;
}