/*
Theme Name: Avada Child
Description: Child theme for Avada theme
Author: ThemeFusion
Author URI: https://theme-fusion.com
Template: Avada
Version: 1.0.0
Text Domain:  Avada
*/

.state-filter-row {
    display: flex;
    align-items: center;
}

.state-filter-wrapper {
    display: inline-flex;
    align-items: center;
    border: 1px solid #5a1746;
    border-radius: 6px;
    overflow: hidden;
}

.state-filter-wrapper form {
    display: flex;
    align-items: center;
    margin: 0;
}

.state-filter-wrapper select {
    border: none;
    padding: 8px 18px;
    font-size: 14px;
    margin-right: 5px;
    outline: none;
}

.state-filter-wrapper button {
    background-color: #5a1746;
    color: white;
    border: none;
    padding: 17px 16px;
    font-size: 14px;
    cursor: pointer;
}

.state-filter-wrapper button:hover {
    background-color: #7a215f;
}

#loading-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-top: 2px solid #5a1746;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* Save Occupation Button */
.save-occupation-btn .button-icon {
    margin-right: 8px;
    vertical-align: middle;
}

/* LearnDash Profile */

.user-saved-occupations ul {
    padding-inline-start: 0;
} 
.user-saved-occupations li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border: 2px solid #5a1746;
    border-radius: 6px;
    margin: 1em 0;
    
}
.remove-saved-occupation {
    background: #f15a3a;
    color: #ffffff;
    border: 1px solid #f15a3a;
    border-radius: 6px;
    padding: 10px 20px;
    font-size: 14px;
}
.remove-saved-occupation:hover {
    background: #5a1746;
    cursor: pointer; 
}