.input-wrapper {
    position: relative;
    display: block;
    width: 100%;
}

.input-wrapper input {
    width: 100%;
    padding-right: 35px !important;
    /* Ensure space for the X button */
}

.clear-input-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    font-size: 18px;
    font-weight: bold;
    display: none;
    z-index: 5;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
}

.clear-input-btn:hover {
    color: #333;
}

/* Show only on mobile layout as requested */
@media (max-width: 768px) {
    .clear-input-btn {
        display: flex;
    }
}