/* footer.css */

html, body {
  height: 100%;
  margin: 0;
}

/* Flex container for the entire body content */
.body-flex-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Footer styling */
.footer {
  background-color: #6c757d; /* Dark background for the footer */
  color: white; /* White text color */
  text-align: center; /* Center the text */
  padding: 5px ; /* Adjust the padding to have equal space on top and bottom */
}