body {
  background: #f0f2f5;
  color: #1c1e21;
  margin-top: 5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1c1e21;
  font-weight: 600;
}

a {
  color: #1877f2;
  transition: color 0.3s ease;
}

a:hover {
  color: #166fe5;
}

.bg-steel {
  background-color: #2c3e50;
}

.site-header .navbar-nav .nav-link {
  color: #f0f2f5;
  font-weight: 500;
  transition: color 0.3s ease;
}

.site-header .navbar-nav .nav-link:hover {
  color: #ffffff;
}

.content-section {
  background: #ffffff;
  padding: 20px 30px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.article-title {
  color: #1c1e21;
  font-size: 24px;
  font-weight: 600;
}

a.article-title:hover {
  color: #428bca;
  text-decoration: none;
}

.article-content {
  line-height: 1.6;
}

.article-img {
  height: 65px;
  width: 65px;
  margin-right: 16px;
}

.article-metadata {
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e4e6eb;
}

.article-metadata a:hover {
  color: #333;
  text-decoration: none;
}

/* Add this new style for the comment timestamp */
.post-timetstamp {
  font-size: 0.8rem;
  color: #65676B;
  font-weight: normal;
}

.article-svg {
  width: 25px;
  height: 25px;
  vertical-align: middle;
}

.account-img {
  height: 125px;
  width: 125px;
  margin-right: 20px;
  margin-bottom: 16px;
}

.account-heading {
  font-size: 2.5rem;
}

.list-group {
  padding: 10px;
}

.form-control .form-control-lg {
  height: 1000px;
  padding: 100px;
}

.wiki-page-title {
  color: #1c1e21;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}

.wiki-page-summary {
  /* border: gray;
  border-style: solid;
  border-width: 1px;
  font-size: 15px; */
  background-color: #f0f2f5;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
  align-content: center;
  color: #241c15;
  display: flex;
  justify-content: center;
}

.wiki-page-content {
  font-size: 15px;
}

.wiki-page-date {
  color: #8c8c8c;
}

.search-bar {
  padding: 20px 0;
}

.search-bar input {
  border-radius: 20px;
  border: 1px solid #dddfe2;
  padding: 10px 15px;
}

.email {
  color: #241c15;
}

.ad-container {
  margin: 30px 0;
  padding: 20px;
  background-color: #f0f2f5;
  border-radius: 8px;
  text-align: center;
  width: 100%;
  max-width: 100%;
  max-height: 30%;
  display: inline-block;
  vertical-align: top;
}

post {
  border: 1px solid #dddfe2;
  border-radius: 8px;
  padding: 20px;
  background-color: #ffffff;
  transition: box-shadow 0.3s ease;
}

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

posts {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}