/* Page layout */
body {
  padding: 0 50px;
  font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
  background-color: #f8f9fa;
}

/* Navbar */
nav.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding-left: 50px;
  padding-right: 50px;
  z-index: 1000;
}

h1 {
  margin-top: 90px;
}

/* General link styling */
a {
  color: #00B7FF;
}

/* Posts container */
#posts_box {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

/* Individual post card */
.post {
  width: 300px;
  border: 1px solid #ddd;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.1);
}

/* Heart button */
.heart_button {
  color: red;
  font-size: 20px;
  cursor: pointer;
}

/* Comments box */
.comments-box {
  border: 1px solid #ccc;
  background: #fff;
  margin: 10px 0;
  padding: 10px;
  border-radius: 6px;
}

/* Individual comment */
.individual-comment-box {
  border: 1px solid #ddd;
  background: #fafafa;
  margin: 5px 0;
  padding: 5px 8px;
  border-radius: 4px;
}

.form-group input {
  max-width: 400px;
}