.cw-printer-selector-card {
    background: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    max-width: 100%;
    margin-bottom: 25px;
    position: relative;
    overflow: visible;
}

.cw-selector-header {
    margin-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.cw-selector-title {
    color: #333;
    font-size: 20px !important;
    font-weight: 700 !important;
    margin: 0 0 5px 0 !important;
    text-transform: none !important;
}

.cw-selector-subtitle {
    color: #777;
    font-size: 14px;
    margin: 0 !important;
}

.cw-form-row {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
}

.cw-form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.cw-label {
    font-size: 13px;
    font-weight: 600;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cw-select-wrapper, .cw-input-wrapper {
    position: relative;
}

.cw-select-input, .cw-suggest-input {
    width: 100% !important;
    height: 48px !important;
    padding: 0 15px !important;
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    font-size: 15px !important;
    color: #333 !important;
    background-color: #fff !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
}

.cw-select-input:focus, .cw-suggest-input:focus {
    border-color: #F402C1 !important;
    box-shadow: 0 0 0 3px rgba(244, 2, 193, 0.1) !important;
    outline: none !important;
}

.cw-select-input {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiM3Nzc3NzciIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIj48cGF0aCBkPSJNNiA5bDYgNiA2LTYiPjwvcGF0aD48L3N2Zz4=') !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    background-size: 16px !important;
}

.cw-suggest-input:disabled {
    background-color: #f5f5f5 !important;
    cursor: pointer !important;
    border-color: #eee !important;
    pointer-events: auto !important;
}

.cw-input-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    pointer-events: none;
    font-size: 16px;
    z-index: 5;
}

.cw-input-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    cursor: pointer;
    background: transparent;
}

.cw-suggest-input:not(:disabled) + .cw-input-overlay {
    display: none;
}

.cw-suggest-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 5px !important;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 9999999 !important;
    list-style: none !important;
    padding: 0 !important;
    max-height: 350px;
    overflow-y: auto;
    display: none;
}

.cw-suggest-item {
    padding: 12px 15px !important;
    border-bottom: 1px solid #f0f0f0 !important;
    cursor: pointer !important;
    font-size: 14px !important;
    color: #444 !important;
    transition: all 0.2s ease !important;
}

.cw-suggest-item:last-child {
    border-bottom: none !important;
}

.cw-suggest-item:hover, .cw-suggest-item.active {
    background-color: #F402C1 !important;
    color: #ffffff !important;
}

.cw-suggest-item.loading {
    padding: 15px !important;
    text-align: center;
    color: #888 !important;
    font-style: italic;
}

.cw-selector-footer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.cw-footer-text {
    font-size: 12px;
    color: #999;
    margin: 0 !important;
    text-align: center;
}

.cw-footer-text a {
    color: #F402C1;
    font-weight: 600;
    text-decoration: none;
}

.cw-footer-text a:hover {
    text-decoration: underline;
}

.cw-field-error {
    color: #F402C1;
    font-size: 12px;
    margin-top: 5px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .cw-form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .cw-printer-selector-card {
        padding: 20px;
    }
    
    .cw-selector-title {
        font-size: 18px !important;
    }
}
