    /* Remove default form spacing so it matches other <li> items */
    @charset "UTF-8";   .dropdown-menu li > form {
      margin: 0;
      padding: 0;
    }
    
    /* Style the submit button like a dropdown link */
    .dropdown-menu .dropdown-form-submit {
      display: block;              /* full width */
      width: 100%;                 /* fill parent */
      padding: 3px 20px;           /* same padding as <a> */
      margin: 0;                   /* reset margins */
      border: none;                /* no button border */
      background: none;            /* transparent background */
      text-align: left;            /* left-aligned text */
      font-weight: 400;            /* normal weight */
      color: #333;                 /* default link color */
      white-space: nowrap;         /* prevent wrapping */
      cursor: pointer;             /* pointer on hover */
    }
    
    /* Hover and focus states match links */
    .dropdown-menu .dropdown-form-submit:hover,
    .dropdown-menu .dropdown-form-submit:focus {
      text-decoration: none;       /* remove underline */
      background-color: #f5f5f5;   /* same as .open > .dropdown-menu > li > a:hover */ 
    }
