/*
 Theme Name:   Superio Child
 Theme URI:    https://themeforest.net/item/superio-job-board-wordpress-theme/32180231
 Description:  Superio Child Theme
 Author:       ApusTheme
 Author URI:   http://apusthemes.com
 Template:     superio
 Version:      1.0.0
 Text Domain:  superio-child
*/

/* ================================================
   Moore Talented: On Hold Country Styling
   ================================================ */

/* Native <select> disabled options */
option[disabled] {
    color: #999 !important;
    background-color: #f5f5f5 !important;
}

/* Select2: Disabled/On-Hold option styling */
.select2-container--default .select2-results__option[aria-disabled=true] {
    color: #999 !important;
    background-color: #f9f9f9 !important;
    cursor: not-allowed !important;
    opacity: 0.7;
    position: relative;
    padding-right: 80px;
}

/* Red "On Hold" badge for disabled options in Select2 */
.select2-container--default .select2-results__option[aria-disabled=true]::after {
    content: "On Hold";
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #d63638;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 3px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    line-height: 1.4;
}

/* On-hold option hover state */
.select2-container--default .select2-results__option[aria-disabled=true]:hover {
    background-color: #f0f0f0 !important;
    color: #999 !important;
}