/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body styling */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

footer {
  margin-top: auto;
}

}
#layout {
  display: flex;
  gap: 20px;
}


/* Main content area */
#content {
  flex: 3;
}

/* Sidebar styling */
#sidebar a {
  text-decoration: none;
  color: #333;
  display: block;
  margin: 5px 0;
}

#sidebar a:hover {
  color: #0077cc;
}


/* Headings */
h2 {
  color: #0077cc;
  margin-bottom: 15px;
}

/* Paragraphs */
p {
  margin-bottom: 15px;
}

/* Links */
a {
  color: #0077cc;
  text-decoration: none;
}


footer a {
  margin: 0 8px;
  text-decoration: none;
  color: #333;
}

footer a:hover {
  text-decoration: underline;
}

a:hover {
  text-decoration: underline;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.main-container {
  max-width: 1000px;     /* Adjust width as needed */
  margin: 0 auto;         /* Centers the container horizontally */
  padding: 20px;          /* Adds spacing around content */
}
.share-buttons {
  margin-top: 20px;
}
.share-buttons a {
  margin-right: 10px;
  text-decoration: none;
  color: #0077cc;
}
