/* Make the body take up the full height */
html, body {
  height: 100%;
  margin: 0;
  font-family: Arial, sans-serif;
}

/* Content section, add some padding to the page */
.content {
  padding: 20px;
  text-align: center;
  flex: 1;
}

/* Style the bottom navigation */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #333;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

/* Style for each nav item */
.nav-item {
  text-align: center;
  color: white;
  text-decoration: none;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Icon size */
.nav-item i {
  font-size: 24px;
}

/* Add hover effect */
.nav-item:hover {
  background-color: #444;
  border-radius: 5px;
  padding: 5px;
}

/* Adjust the text next to the icons */
.nav-item span {
  margin-top: 5px;
  font-size: 12px;
}
