    body {
      font-family: Arial, sans-serif;
      padding: 10px;
    }

     .dropdown-row {
      display: flex;
      justify-content: center;   /* centers the dropdowns */
      gap: 10px;                 /* spacing between boxes */
      flex-wrap: wrap;           /* wrap on small screens */
      margin-top: 20px;
    }

    .dropdown-group {
      display: flex;
      flex-direction: column;
      align-items: center;       /* centers label + box */
    }

    label {
      font-weight: bold;
      margin-bottom: 5px;
    }

    select {
      padding: 8px;
      width: auto;          /* grows to fit content */
      min-width: 40px;      /* prevents tiny dropdown */
      border-radius: 6px;
	  border: none;              /* removes the lines */
      font-size: 14px;
    }
	      /* AUTO SIZE */

