 /* ==================== Start Navbar ====================  */
 .navbar-custom {
     /* Default height for larger screens */
     height: auto;
 }

 .custom-alert{
    position: fixed;
    top: 80px;
    right: 25px;
    z-index: 999999;
}
 /* Media query for mobile devices */
 @media (max-width: 576px) {
     .navbar-custom {
         height: 62.5px;
     }

     .navbar-custom .container {
         display: flex;
         align-items: center;
         margin-top: -15px;
         padding: 0;
         /* Remove top and bottom margin/padding */
     }

     .navbar-custom .logo {
         flex: 1;
     }

     .navbar-custom .navbar-toggler {
         margin-left: auto;
         height: 62.96px;
     }

     .navbar-custom .navbar-collapse {
         flex-direction: column;
         align-items: flex-start;
     }

     .navbar-custom .navbar-nav {
         flex-direction: row;
         width: 100%;
         justify-content: space-between;
     }

     .navbar-custom .navbar-nav .nav-item {
         margin: 0;
     }

     .navbar-custom #navbarPageContent {
         display: none;
         /* Hide the countdown on mobile for better spacing */
     }
 }
 /* ==================== End Navbar ====================  */