/* Menu Container */
.menu-container {
    position: relative;
    display: inline-block;
  }
  
  /* Menu Button */
  /* .menu-button {
    display: inline-block;
    padding: 5px;
    cursor: pointer;
} */

  .menu-options {
    font-size: 13px;
    position: absolute;
    top: 100%;
    margin-top: -20px;
    left: 0;
    width: auto;
    min-width: 120px;
    z-index: 1;
    display: none;
    padding: 5px 0;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.menu-button {
    position: relative;
    display: inline-block;
    cursor: pointer;
  }
  
  
  

  .menu-options.show {
    max-height: 200px; /* Adjust the value as needed */
  }
  
  /* Menu Item */
  .menu-item {
    display: block;
    padding: 5px 15px;
    text-decoration: none;
    color: #333;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .menu-item:hover {
    background-color: #f0f0f0;
  }
  