
18K Yellow Shiny Round Bead
Drop-down Menu /* Basic styling for the drop-down menu */ .dropdown { position: relative; display: inline-block; } .dropbtn { background-color: #c7ac63; /* Green */ color: white; padding: 14px 24px; font-size: 16px; border: none; cursor: pointer; border-radius: 5px; font-family: Arial, sans-serif; transition: background-color 0.3s ease; } .dropbtn:hover { background-color: #c7ac63; /* Darker green on hover */ } .dropdown-content { display: none; position: absolute; background-color: #f9f9f9; min-width: 220px; /* Increased width of dropdown */ max-height: 200px; /* Set max height for scroll */ overflow-y: auto; /* Enable scroll when content exceeds max height */ box-shadow: