 form {
      max-width: 300px;
      margin: auto;
    }

    label {
      display: inline-block;
      width: 100px; /* Adjust the width as needed */
      margin-bottom: 5px;
    }

    select {
      width: calc(100% - 110px); /* Adjust the width as needed */
      padding: 8px;
      margin-bottom: 10px;
      box-sizing: border-box;
      display: inline-block;
    }

    input[type="submit"] {
      background-color: #4caf50;
      color: #fff;
      padding: 10px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
    }
