/* Dropdown Button */
.dropbtn {
    background-color: white;
    color: black;
    padding: 10px;
    font-size: 16px;
    border-radius: 10px;
    border-color: black;
    max-width: 360px;
    min-width: 264px;
    text-align: left;
    cursor: pointer;
  }

  .dropbtnTrailer {
    background-color: white;
    color: black;
    padding: 10px;
    font-size: 16px;
    border-radius: 10px;
    border-color: black;
    max-width: 360px;
    min-width: 264px;
    text-align: left;
  }
  
  /* The search field */
  #myInput {
    max-width: 260px;
    padding: 10px;
  }
  
  /* The search field when it gets focus/clicked on */
  #myInput:focus {outline: 3px solid #ddd;}
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    position: relative;
    display: inline-block;
    margin-bottom: 100px;
  }
  .dropdownMB {
    position: relative;
    display: inline-block;
    margin-bottom: 150px;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f6f6f6;
    min-width: 230px;
    max-height: 250px;
    border: 1px solid #ddd;
    z-index: 1;
  }
  
  /* Links inside the dropdown */
  .dropdown-content span {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-bottom-style: solid;
    cursor: pointer;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content span:hover {background-color: #f1f1f1}
  
  /* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
  .show {display:block;}