/* Custom CSS to make footer always fixed at bottom without overlapping content */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#content-wrapper {
  flex: 1 0 auto;
  padding-bottom: 60px; /* height of footer */
}

footer#site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #1f2937; /* Tailwind gray-900 */
  color: #9ca3af; /* Tailwind gray-400 */
  border-top: 1px solid #374151; /* Tailwind gray-800 */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

