.mega-menu {
  display: none;
    position: absolute;
    top: 68px;
    left: 20px;
    padding: 22px 18px 22px 18px;
    font-size: 15px;
    width: 724px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 999999;
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    background-color: #fcfafa;
}

.menu-columns {
  display: flex; /* Ensures flexbox layout */
  flex-wrap: nowrap; /* Prevent wrapping */
  justify-content: space-between; /* Space between the columns */
}

.left-column {
  width: 100%; 
  padding:0px 24px 0px 0px;
}

.right-column {
  width: 100%; 
}

.mega-menu ul {
  list-style: none;
  margin: 0;
}

.mega-menu ul li {
  display: flex;
  align-items: center;
  padding: 10px;
}

.mega-menu ul li a {
  text-decoration: none;
  color: #646464;
  transition: text-decoration-color 0.3s ease;
}

.mega-menu ul li a:hover {
  text-decoration: underline;
  text-decoration-color: #E63946;
  color: #E63946;
  text-underline-offset: 6px;
}

.menu-divider {
  width: 92%;
  border-top: 1px solid #e0e0e0;
  margin: 18px auto;
}

.profile-image-box-mega {
  margin-right: 8px;
}

.profile-img-small {
  width: 38px;
  height: auto;
  border-radius: 50%;
}

@media only screen and (max-width: 600px) {
  .mega-menu {
    font-size: 20px;
    width: 100%;
    margin: 0;
    left: 0;
  }

  .menu-columns {
    flex-direction: column; /* Stack columns vertically on mobile */
  }

  .left-column,
  .right-column {
    width: 100%; /* Full width for each column on mobile */
    padding:0px;
  }

  .mega-menu ul li {
    padding: 18px;
  }
}
#logo {cursor:pointer;}
#arrow {
    transition: transform 0.3s ease; /* Smooth transition for rotation */
}

#arrow.up {
    transform: rotate(0deg); /* Default state (up) */
}

#arrow.left {
    transform: rotate(180deg); /* Left-pointing arrow */
}