.uc-menu-item-pointer{
    display:none !important;
}

.menu-wrapper {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    gap: 10px; /* Add spacing between buttons */
    align-items: flex-start; /* Align to the left */
}

.menu-link {
    text-decoration: none;
   
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    display: inline-block;
    width: 100%; /* Ensure it takes full width */
    text-align: center; /* Center text */
}

.menu-link:hover {
   
}

.logout {
   
}

.logout:hover {
   
}
  .dropdown {
  
    font-weight: 600;
    font-family: "Thunderstrike";
    color: #d4af37;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 10px;
    border-radius: 15px;
    height: 45px !important;
  }

  .dropdown:hover {
    color: #d4af37;
  }

  .dropdown-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    background-color: black;
    min-width: 160px;
    z-index: 1;
    top: 100%;
    left: 0;
    padding: 10px 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
  }

  .dropdown-content a {
    color: #fac400;
    padding: 8px 16px;
    text-decoration: none;
    display: block;
  }

  .dropdown-content a:hover {
    background-color: black;
    color: white;
  }

  .dropdown:hover .dropdown-content {
    display: block;
  }

  .orders {
    color: white;
    font-family: "Thunderstrike";
    font-size: 18px;
    font-weight: 600;
  }

  .orders:hover {
    background: black;
    color: #d4af37;
    padding: 10px;
    border-radius: 30px;
    width: 100px;
  }

  .login {
    position: relative;
    left: 140px;
    background-color: #efc600;
    font-weight: 600;
    font-family: "Thunderstrike";
    color: black;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 10px;
    border-radius: 15px;
    height: 45px !important;
  }

  .login:hover {
    color: #fff;
  }

  
.global-dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown content */
.global-dropdown-content {
    display: none;
    position: absolute;
    left: 19px !important;
    top: 100%;
    color: white;
    min-width: 150px;
    /*box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);*/
    padding: 10px;
    z-index: 100;
    border-radius: 5px;
}
.global-logout-button:hover{
    background-color:white !important;
    box-shadow: none !important;
}

/* Ensure dropdown is not stretching */
.global-dropdown-content a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 10px;
    border-bottom: 1px solid #444;
    white-space: nowrap; /* Prevent text from wrapping */
}

/* Last item has no border */
.global-dropdown-content a:last-child {
    border-bottom: none;
}

/* Hover effect */
.global-dropdown-content a:hover {
    background-color: #444;
}

/* Show dropdown on hover */
.global-dropdown:hover .global-dropdown-content {
    display: block;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .global-dropdown-content {
        position: absolute;
        width: 100%;
        left: 0;
        /*background-color: #222;*/
    }
}


  