.wtm-search-container {
    margin-bottom: 20px;
    position: relative;
    max-width: 300px;
}

.wtm-live-search {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    background: #fff;
}

.wtm-live-search:focus {
    border-color: #007cba;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

.wtm-live-search::placeholder {
    color: #8c8f94;
}

.wtm-search-container::after {
    content: "\f002";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #8c8f94;
    pointer-events: none;
}

.wtm-search-loading {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #007cba;
}

.wtm-search-loading::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid #e1e5e9;
    border-top: 2px solid #007cba;
    border-radius: 50%;
    animation: wtm-spin 0.8s linear infinite;
    margin-left: 6px;
    vertical-align: middle;
}

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

.dwl-team-wrapper--main.wtm-searching {
    opacity: 0.5;
    transition: opacity 0.2s ease;
    pointer-events: none;
}