body {
  margin: 0;
  font-family: sans-serif;
  background: #f2f2f2;
}

a{
  text-decoration: none;
  color:#000;
}

.content {
  padding: 5px;
}



.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: #003b31;
  border-top: 1px solid #030000;
  display: flex;
  justify-content: space-around;
  padding: 8px 0;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
  z-index: 1000;
}

.nav-item {
  text-decoration: none;
  color: #ffffff;
  text-align: center;
  flex-grow: 1;
  font-size: 14px;
}

.nav-item span {
  display: block;
  font-size: 20px;
}

.nav-item.active {
  color: #a6a6a6; 
}

.nav-item.active span {
  font-weight: bold;
}

.bottom-nav i {
    display: block;
    font-size: 20px;
    margin-bottom: 3px;
}









header {
  width: 100%;
  box-sizing: border-box;
  position: sticky !important;
  top: 0 !important;
  z-index: 999 !important;
  background-color: #003b31;
  color: white;
  padding: 15px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

  header a{
    color: #ffffff;
  }

  .left-section {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .logo {
    font-size: 20px;
    font-weight: bold;
  }

  .logo a {
    color: #ffffff;
  }

 
  .right-section {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
  }

  .icon {
    cursor: pointer;
  }


