/* Menu container */
.menu {
    position: relative;
  }
  
  /* Menu item */
  .menu-item {
    position: relative;
    padding: 10px;
    background-color: #333;
    color: #fff;
    cursor: pointer;
  }
  
  /* Dropdown content */
  .menu .dropdown {
    display: none;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 0;
    top: 100%; /* Position dropdown below the menu item */
    width: 100vw; /* Full viewport width */
    background-color: #444;
    color: #fff;
    padding: 10px;
    box-sizing: border-box; /* Ensures padding doesn't increase width */
    z-index: 1000; /* Ensure it stays above other elements */
  }
  
  /* Show dropdown on hover */
  .menu-item:hover .dropdown {
    display: block;
  }
  