/// The HTML id for the fruit select element.
pub const SELECT_FRUIT_ID: &str = "select-fruit";
/// The HTML id for the country select element.
pub const SELECT_COUNTRY_ID: &str = "select-country";
/// The HTML id for the city select element.
pub const SELECT_CITY_ID: &str = "select-city";
/// The HTML id for the feedback textarea element.
pub const SELECT_FEEDBACK_ID: &str = "select-feedback";
/// The HTML name attribute for the fruit select element.
pub const SELECT_FRUIT_NAME: &str = "fruit";
/// The HTML name attribute for the country select element.
pub const SELECT_COUNTRY_NAME: &str = "country";
/// The HTML name attribute for the city select element.
pub const SELECT_CITY_NAME: &str = "city";
/// The HTML name attribute for the feedback textarea element.
pub const SELECT_FEEDBACK_NAME: &str = "feedback";
/// The HTML autocomplete attribute value for off.
pub const SELECT_AUTOCOMPLETE_OFF: &str = "off";
/// The HTML autocomplete attribute value for country.
pub const SELECT_AUTOCOMPLETE_COUNTRY: &str = "country";
/// The HTML placeholder for the feedback textarea element.
pub const SELECT_FEEDBACK_PLACEHOLDER: &str = "Share your thoughts...";
/// The HTML rows attribute for the feedback textarea element.
pub const SELECT_FEEDBACK_ROWS: &str = "4";