#acra-search-form {
    margin-bottom: 20px;
    display: flex;
    position: relative;
    text-align: center;
}
@media (max-width: 767px){
	#acra-search-form {
		display: block;
	}
	#acra-search-form button{
		width: 100%;
		margin-top: 10px;
	}
}
#acra-search-form input[type="text"] {
    border-radius: 50px;
    border: unset;
    width: 100%;
    outline: unset;
    text-align: left;
    padding-left: 20px;
}
#acra-search-form button {
    padding: 12px 50px;
    border-radius: 50px;
    border: unset;
    background: linear-gradient(112deg, #3989ff 5.61%, #2ce9d5 106.17%);
    color: #fff;
    font-weight: bold;
    white-space: nowrap;
}
#acra-search-form button:hover {
	background: #F9623E;
}

@media (min-width: 769px){
	#acra-search-form button {
		margin-left: -80px;
	}
}
#acra-search-dropdown {
    display: none;
    height: 100px;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ccc;
    margin-top: 10px;
    background-color: white;
    width: 100%;
    position: absolute;
    z-index: 999;
	position: relative;
}
#acra-message {
    display: none;
    position: relative;
    color: #fff;
    padding: 10px 0;
}
span.acra-not-available {
	color: #000;
	padding: 10px;
    background: #FFDDDD;
    display: block;
	border-radius: 10px;
}
span.acra-available {
    color: #000;
    padding: 10px;
    background: #DDFFDD;
    display: block;
	border-radius: 10px;
}
#acra-search-dropdown ul {
    list-style-type: none;
    padding: 0;
    margin-top: 5px;
}

#acra-search-dropdown li {
    padding: 0 5px;
	border-bottom: 1px solid #d2d2d2;
}

#loading-icon {
    display: none; /* Hidden initially */
    border: 3px solid #f3f3f3; /* Light gray border */
    border-top: 3px solid #3498db; /* Blue border for spinner */
    border-radius: 50%; /* Make it circular */
    width: 16px;
    height: 16px;
    animation: spin 1s linear infinite; /* Animation for spinning */
}

/* Define the spin animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
