* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  /* margin: 20px; */
}

.container {
  line-height: 1.7;
  margin-top: 30px !important;
  max-width: 800px;
  height: 30vh;
  margin: 0 auto;
  text-align: center;
}

input[type="text"] {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}

.thumbnail-item {
  margin: 20px 0;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #f9f9f9;
}

.thumbnail-item img {
  max-width: 100%;
  border-radius: 5px;
}

/* Header Styles */
header {
  background-color: #333;
  color: white;
  padding: 10px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo a {
  color: white;
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

nav ul li a:hover {
  /* text-decoration: underline; */
  color: #ccc;
}

/* Privacy Policy Page Styles */
.content {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  line-height: 1.6;
  text-align: left !important;
}

.content h2 {
  margin-top: 30px;
  color: #333;
}

.content h3 {
  margin-top: 20px;
  color: #555;
}

.content p {
  margin-bottom: 15px;
  color: #666;
}

.content ul {
  margin-bottom: 15px;
  padding-left: 20px;
}

.content ul li {
  margin-bottom: 10px;
}
.privacy-policy {
  text-align: left !important;
}

/* Posts page styles */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  line-height: 1.6;
}

.container h1 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}

.container h2 {
  font-size: 2rem;
  color: #555;
  margin-top: 30px;
  margin-bottom: 15px;
}

.container ul {
  list-style: none;
  padding: 0;
}

.container ul li {
  margin-bottom: 15px;
}

.container ul li a {
  font-size: 1.2rem;
  color: #007bff;
  text-decoration: none;
}

.container ul li a:hover {
  text-decoration: underline;
}

.container ul li small {
  font-size: 0.9rem;
  color: #666;
  margin-left: 10px;
}
.list-posts {
  text-align: left !important;
}

/* Posts list styles */
.posts-list {
  list-style: none;
  padding: 0;
}

.post-item {
  margin-bottom: 30px; /* Space between posts */
  padding: 20px; /* Padding inside the box */
  border-radius: 8px; /* Rounded corners */
  background-color: #fff; /* White background */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Soft shadow */
  transition: box-shadow 0.3s ease; /* Smooth hover effect */
}

.post-item:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Larger shadow on hover */
}

.post-item a {
  font-size: 1.5rem;
  color: #007bff;
  text-decoration: none;
}

.post-item a:hover {
  text-decoration: underline;
}

.post-item small {
  font-size: 0.9rem;
  color: #666;
  margin-left: 10px;
}

.post-summary {
  font-size: 1rem;
  color: #444;
  margin-top: 10px;
  line-height: 1.6;
}

/* Read More link styles */
.read-more-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.9rem !important;
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.read-more-link:hover {
  color: #0056b3; /* Darker blue on hover */
  text-decoration: underline;
}
