/* Search Input Wrapper */
.search-input-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.search-input-wrapper input {
    width: 100%;
    padding-right: 30px; /* 留出清除按钮位置 */
}

/* Clear Button */
.btn-clear {
    position: absolute;
    right: 8px;
    background: #cbd5e1;
    border: none;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    color: white;
    font-size: 12px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.2s;
}

.btn-clear:hover {
    background: #94a3b8;
}

.btn-clear.hidden {
    display: none;
}