.search-box {
    position: relative;
    min-width: 180px;
}

.search-box input {
    padding-right: 2.2rem !important;
    position: relative;
    z-index: 1;
}

/* Klikbare X */
.clear-btn {
    position: absolute;
    right: .55rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    z-index: 5;
    opacity: 0.9;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='14' height='14' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
}

.clear-btn:hover {
    opacity: 1;
}

/* Native browser X uitschakelen */
input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
}

