#salary-tool-container {
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

#salary-tool-container .form-section {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

#salary-tool-container select {
    padding: 10px;
    font-size: 16px; /* Adjust font size as needed */
    border: 1px solid #ccc; /* Light grey border */
    border-radius: 4px; /* Rounded corners */
    appearance: none; /* Remove default styling */
    -webkit-appearance: none; /* Remove default styling for Safari */
    -moz-appearance: none; /* Remove default styling for Firefox */
    background-color: #fff; /* White background */
    width: 70%; /* Adjust width as necessary */
    box-sizing: border-box;
}

#salary-tool-container button {
    background-color: #2bc132; /* Green background */
    border: none; /* No border */
    padding: 15px 30px; /* Padding inside the button */
    color: white; /* White text */
    font-size: 16px; /* Adjust the font size as needed */
    cursor: pointer; /* Hand cursor on hover */
    border-radius: 4px; /* Rounded corners */
    width: 28%; /* Adjust width as necessary */
    box-sizing: border-box;
}

#salary-tool-container button:hover {
    background-color: #45a049; /* Darker green background on hover */
}

.response-section {
	text-align: center;
}

/* Adjust the select width and button width on smaller screens if necessary */
@media (max-width: 768px) {
    #salary-tool-container select {
        width: 100%;
    }

    #salary-tool-container button {
        width: 100%;
        margin-top: 10px; /* Spacing above the button */
    }
}

#role-name {
	font-weight: 700;
	text-transform: capitalize;
}

#salary-text, #role-description {
    text-align: center;
    font-size: 22px;
	margin-top: 10px;
}

#salary-amount {
	display: block;
    font-size: 58px;
    font-weight: 800;
	margin-top: -10px;
}

#job-article-link {
	    font-family: "Red Hat Display", Sans-serif;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.3px;
    fill: var( --e-global-color-96f0a7b );
    color: var( --e-global-color-96f0a7b );
    background-color: var( --e-global-color-227ecb5 );
    border-radius: 50px 50px 50px 50px;
    padding: 10px 30px 10px 30px;
}

#census-info {
	margin-top: -10px;
}

#autocomplete-results {
    display: none; /* Initially hidden */
}

#autocomplete-results {
	    position: absolute;
    top: 50px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0px 5px 25px #00000020;
    padding: 5px 10px 5px 0;
    min-width: 500px;
    max-height: 300px;
    overflow-y: scroll;
}

#autocomplete-results ul {
	list-style: none;
	margin-left: -30px;
}

#autocomplete-results ul li {
	    cursor: pointer;
    border-radius: 4px;
    margin: 10px 0;
    padding: 5px 10px;
}

#autocomplete-results ul li:hover {
	background-color: #00000010;
}

#job-role-input {
	    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    padding: 10px;
    border-radius: 8px;
    border: none;
    /*background-color: #00000010;*/
	background-color: #f3f3f3 !important;
    width: 450px;
}