/* header */
.navbar-nav .nav-link {
    font-size: 18px;
    font-weight: bold;
    color: white;
    display: flex;
    justify-content: space-around;
    width: 100%;
    /* gap: 10px; */
}
.navbar-nav .nav-link:hover {
    background-color: rgb(95, 160, 119);
}
 /* Tab Styling */
 .nav-tabs {
    border-bottom: 2px solid #4CAF50;
  }
  .nav-item {
    margin-bottom: -1px;
  }
  .nav-link {
    color: #4CAF50;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 10px 20px;
    margin-right: 15px;
    transition: all 0.3s ease;

  }
  .nav-link:hover, .nav-link:focus {
    background-color: #f1f1f1;
    border-color: #4CAF50;
  }
  .nav-link.active {
    background-color: #4CAF50;
    color: white;
    border-color: #4CAF50;
    font-weight: bold;
  }
  /* Custom Hamburger Icon Button */
.custom-toggler {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;      
    height: 40px;     
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;    
    z-index: 1001;
}

/* Hamburger bars */
.bar {
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
    margin: 3px 0;   
}

/* Active state for transforming to 'X' */
.custom-toggler.active .top-bar {
    transform: rotate(45deg) translate(6px, 6px);
}

.custom-toggler.active .middle-bar {
    opacity: 0;
}

.custom-toggler.active .bottom-bar {
    transform: rotate(-45deg) translate(6px, -6px);
}
