.custom-dropdown {
    position: relative;
    display: inline-block;
  }

  /* Style for the custom dropdown button */
  .custom-dropbtn {
    padding: 7px 10px;
    min-width: 180px;
    color: #000;
    background-color: transparent;
    border: 2px solid rgba(128,128,128,0.5);
    border-radius: 10px;
    cursor: pointer;
  }

  /* Style for the custom dropdown content */
  .custom-dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    z-index: 1;
  }

  /* Style for the checkboxes in the custom dropdown */
  .custom-dropdown-content input {
    margin: 8px;
  }

  .custom-input:hover {
    background-color: #f4f4f4;
    cursor: pointer;
  }