    .disabled-block {
        opacity: 0.55;
        pointer-events: none;
    }

/* 1. Set Actual Text Value to Royal Blue (Overrides Theme) */
form[name='JobSaveForm'] input[type="text"],
form[name='JobSaveForm'] textarea,
form[name='JobSaveForm'] select,
form[name='JobSaveForm'] .form-control, 
form[name='JobSaveForm'] .form-select {
    color: #4169e1 !important; /* Royal Blue */
    background-color:#fff;font-weight: 500 !important;
}

/* 2. Force Placeholders (Hints) to Gray */
form[name='JobSaveForm'] input::-webkit-input-placeholder,
form[name='JobSaveForm'] textarea::-webkit-input-placeholder { 
    color: #adb5bd !important; /* Muted Gray */
    font-weight: normal !important;
    -webkit-text-fill-color: #adb5bd !important;
}

form[name='JobSaveForm'] input::-moz-placeholder,
form[name='JobSaveForm'] textarea::-moz-placeholder { 
    color: #adb5bd !important;
    font-weight: normal !important;
    opacity: 1;
}

form[name='JobSaveForm'] input::placeholder,
form[name='JobSaveForm'] textarea::placeholder { 
    color: #adb5bd !important; 
    font-weight: normal !important;
    opacity: 1;
}
/* 1. EXISTING EDUCATION STYLES (Keep these) */
.custom-multiselect-box {
    border-radius: 0.375rem;
    padding: 6px 12px;
    min-height: 45px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    cursor: text;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.custom-multiselect-box:focus-within {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13,110,253,.25);
}
#eduSearch {
    border: none;
    outline: none;
    background: transparent;
    flex-grow: 1;
    min-width: 120px;
    font-size: 0.95rem;
    color: #495057;
}
.edu-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 99999;
    background: #fff;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 0.375rem;
    max-height: 240px;
    overflow-y: auto;
    margin-top: 4px;
    display: none;
}
.edu-dropdown-menu.show { display: block; }
.edu-option {
    font-size: 0.9rem;
    padding: 8px 12px;
    border: none;
    border-bottom: 1px solid #f0f0f0;
    text-align: left;
    background: #fff;
    width: 100%;
    transition: background 0.1s;
}
.edu-option:hover { background-color: #f8f9fa; color: #0d6efd; }
.edu-option:last-child { border-bottom: none; }
.edu-option.selected-disabled {
    background-color: #f9fafb;
    color: #adb5bd;
    pointer-events: none;
    text-decoration: line-through;
}
.edu-tag {
    background-color: #e7f1ff;
    color: #0c63e4;
    border: 1px solid #cff4fc;
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    user-select: none;
}
.edu-tag .remove-tag {
    margin-left: 6px;
    font-size: 0.75rem;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.2s;
}
.edu-tag .remove-tag:hover { opacity: 1; color: #dc3545; }

/* 2. FIX FOR DEFAULT OXWALL TAGS INPUT */
/* Force the container to look like a Bootstrap input */
div.tagsinput {
    width: 100% !important;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    padding: 0.375rem 0.75rem;
    min-height: 45px;
    height: auto !important;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    margin-bottom: 0;
}

/* Fix input visibility and text color */
div.tagsinput input {
    width: auto !important;
    min-width: 150px;
    height: 30px !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    color: #212529 !important; /* Dark text */
    font-size: 1rem;
    line-height: 1.5;
    font-family: inherit;
}

/* Ensure the wrapper div inside tagsinput doesn't float weirdly */
div.tagsinput div {
    display: inline-block !important;
    float: none !important;
}

/* Style the added tags to match your Education tags */
div.tagsinput span.tag {
    background: #e7f1ff !important;
    color: #0b5cff !important;
    border: 1px solid #cff4fc !important;
    border-radius: 4px !important;
    padding: 4px 10px !important;
    float: none !important;
    display: inline-flex;
    align-items: center;
    margin: 0 !important;
    font-size: 0.875rem;
    line-height: 1.5;
    height: auto !important;
}

/* Fix link inside the tag (the 'x' remove button) */
div.tagsinput span.tag a {
    color: #0b5cff !important;
    background:none!important;
    text-decoration: none;
    margin-left: 8px;
    font-weight: bold;
    font-size: 16px;
    line-height: 1;
}
div.tagsinput span.tag a:hover {
    color: #002a80 !important;
}
