 .custom-dropdown {
     position: relative;
     display: inline-block;
     margin-bottom: 20px;
     /* Space between dropdowns */

 }

 .custom-dropdown-content {
    width: 100%;
     display: none;
     position: absolute;
     background-color: #f9f9f9;
     min-width: 160px;
     box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
     z-index: 1;
 }

 .custom-dropdown-content div {
     padding: 12px 16px;
     cursor: pointer;
 }

 .custom-dropdown-content div:hover {
     background-color: #f1f1f1;
 }

 .show {
     display: block;
 }

 .custom-input-field {
     width: 100%;
     padding: 10px;
     border: 1px solid #ccc;
     border-radius: 4px;
 }
