/* Wrapper */
.ci-wrapper {
    position: relative;
    width: 100%;        
}

/* Input */
.custom-input {    
    padding: 6px 14px 6px 42px;
    background: var(--color-surface);
    border: 1px solid #888;
    border-radius: 10px;
    color: var(--color-text);
    font-size: 14px;
    outline: none;
    transition: border 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}

.custom-input::placeholder {
    color: #6b7280;
}

.custom-input:focus {
    border-color: var(--color-text);
    box-shadow: 0 0 0 2px rgba(99,102,241,0.3);
}

/* Icon */
.ci-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 14px;
    pointer-events: none;
}

/* Hide icon by default */
.ci-wrapper.no-icon .ci-icon {
    display: none;
}