.vin-search-field {
    position: relative;
    max-width: 480px;
}

.vin-search-input {
    width: 100%;
    height: 30px;
    padding: 0 36px 0 14px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    background: var(--color-surface);
    color: var(--color-text);
    font-size: var(--font-size-base);
    font-family: inherit;
    outline: none;
    transition: border-color 0.15s;
}

.vin-search-input:focus {
    border-color: var(--color-primary);
}

.vin-search-input::placeholder {
    color: var(--color-text-muted);
}

.vin-search-button {
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.vin-search-icon {
    width: 14px;
    height: 14px;
    display: inline-block;
    background-color: var(--color-text-muted);
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='7'/><line x1='21' y1='21' x2='16.65' y2='16.65'/></svg>") no-repeat center / contain;
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='7'/><line x1='21' y1='21' x2='16.65' y2='16.65'/></svg>") no-repeat center / contain;
}
