.button_calc {
  background-color: #DE6B07;
  border: none;
  border-radius: 50%;
  color: white;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition: background 0.3s ease;
}


.button_calc:hover {
	background-color: #25C998;
	color: #1A1D53;	
}

input::placeholder {
    color: white; /* Set placeholder text color to white */
    opacity: 1;   /* Ensure the color is fully applied */
  }
  
.autoComplete_result {
            font-size: 12px !important; /* Adjust as needed */
        }
        /* Make the suggestion list wider */
.autoComplete_results {
            width: 100% !important; /* Or set a fixed width like 400px */
        }