/* General body styling */
body {
    font-family: Arial, sans-serif;
    background-color: #e0f7fa; /* Light blue background */
    color: #0277bd; /* Darker blue text for contrast */
    margin: 0;
    padding: 0;
  }
  
  /* Header styling */
  header {
    background-color: #b3e5fc; /* Lighter blue background for the header */
    padding: 10px 0;
    text-align: center;
  }
  
  /* Navigation links */
  nav a {
    color: #01579b; /* Even darker blue for links for readability */
    text-decoration: none;
    padding: 0 10px;
  }
  
  nav a:hover {
    text-decoration: underline;
  }
  
  /* Forum post styling */
  .forum-post {
    background-color: #81d4fa; /* A different shade of light blue for posts */
    border: 1px solid #4fc3f7; /* Slightly darker blue for border */
    margin: 20px;
    padding: 15px;
  }
  
  .post-header h2 {
    font-size: 1.5em; /* Adjust the size of the title as needed */
    margin: 0 0 10px 0; /* Reduces space around the title */
    color: #01579b;
  }
  
  .author, time {
    text-align: left; /* Aligns the title to the left */
    color: #0288d1; /* A medium blue for author and time */
  }
  
  /* Footer styling */
  footer {
    background-color: #b3e5fc;
    color: #0277bd;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
  }
  
  /* Previous Posts section styling */
.previous-posts {
    text-align: left; /* Aligns the title to the left */
    margin: 20px;
    padding: 15px;
    background-color: #b3e5fc; /* Light blue background */
  }
  
  #posts-container {
    margin-bottom: 20px;
  }
  
  /* Clear Posts button styling */
  #clear-posts {
    background-color: #4fc3f7; /* A blue that stands out for the button */
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
  }
  
  #clear-posts:hover {
    background-color: #29b6f6; /* A slightly lighter blue on hover */
  }