.footer-menu {
  display: none;
}

.notification-badge {
    position: absolute;
    top: 12px;
    right: 15px;
    background-color: red;
    color: white;
    font-size: 10px;
    font-weight: bold;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 600px) {
  /* General reset and body styling */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

  /* Main content style to push footer to bottom */
  .content {
    flex: 1;
    padding: 20px;
    text-align: center;
  }

  /* Footer menu styling */
  .footer-menu {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10000000;

    -webkit-box-shadow: 1px 1px 10px 1px #C4C4C4;
    box-shadow: 1px 1px 10px 1px #C4C4C4;
    border: 0px solid #ebebeb;
    padding: 20px;
    margin: 0px;
    margin-top: 10px;
    width: 100%;
    -webkit-border-radius: 10px 10px 0px 0px;
    border-radius: 10px 10px 0px 0px;
    background-color: #ffffff;
  }

  .footer-menu a {
    color: #404040 !important;
    text-decoration: none;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }

  .footer-menu a .icon {
    font-size: 20px;
    margin-bottom: 5px;
  }

  .footer-menu a:hover {
    color: #1e90ff; /* Light blue on hover */
  }

  .fas {
    font-size: 22px!important;
    margin-bottom: 5px;
  }

  .nav_menu {
    display: none!important;
  }

  #breadcrumbs_top {
    display: none!important;
  }

  .right_col {
    margin-top: -20px!important;
  }

  .current-page {
    color: #009ed5!important;
  }

  .notification-badge {
      position: absolute;
      top: -10px;
      right: 15px;
      background-color: red;
      color: white;
      font-size: 10px;
      font-weight: bold;
      border-radius: 50%;
      width: 18px;
      height: 18px;
      display: flex;
      justify-content: center;
      align-items: center;
  }
}
