.input-refresh-container {
  position: relative; /* Essential for positioning the button relative to this container */
  display: inline-block; /* Or block, depending on desired layout */
  width: 300px; /* Example width */
}

.input-field {
  width: 100%;
  padding: 10px;
  padding-right: 40px; /* Adjust to prevent text overlap with the button */
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.refresh-button {
  position: absolute;
  right: 10px; /* Adjust as needed for spacing from the right edge */
  top: 50%;
  transform: translateY(-50%); /* Vertically center the button */
  background-color: white; /* Example background color */
  color: #0e1e5f;
  border: none;
  border-radius: 50%; /* For a circular button */
  width: 30px; /* Example size */
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 1.5em; /* Adjust font size for the refresh icon */
}

.refresh-button:hover {
  background-color: #0e1e5f; /* Example background color */
  color: white;
}