/* --- Extracted from 17_LIGHT_PLACEHOLDERS.css --- */
/* === LIGHT PLACEHOLDERS === */
input::placeholder,
textarea::placeholder {
    color: #cbd5e1 !important;
    opacity: 1;
}



/* --- Extracted from 03_SEARCH_BAR_COMPONENTS.css --- */
/* === SEARCH BAR COMPONENTS === */
.search-icon {
    margin-left: 10px;
    color: #cbd5e1;
    font-size: 1.2rem;
}

.search-input-flex {
    border: none;
    flex: 1;
    font-size: 1rem;
    min-width: 150px;
}

.search-divider {
    border-left: 1px solid var(--border);
    padding-left: 10px;
    flex-shrink: 0;
}

.search-filter-btn {
    border: none;
    background: transparent;
    font-weight: 700;
    color: var(--text-light);
    cursor: pointer;
}

.view-toggle-wrapper {
    flex-shrink: 0;
}

/* --- FIELD POLISHING & TAGS (Extracted from login.html) --- */
.rc-input-premium {
    padding: 12px 15px !important;
    font-size: 0.95rem !important;
    border-radius: 12px !important;
}

.rc-parts-list {
    margin-top: 12px;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px;
    background: var(--bg-input);
    min-height: 45px;
}

.rc-part-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid var(--border);
    margin: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.rc-part-tag i {
    color: #ef4444;
    cursor: pointer;
    font-size: 1.1rem;
}

.rc-part-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-premium {
    transition: all 0.3s ease !important;
}

.btn-premium:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}





/* Utility to hide number input spinners */
.no-spin::-webkit-inner-spin-button,
.no-spin::-webkit-outer-spin-button {
    -webkit-appearance: none !important;
    appearance: none !important;
    margin: 0 !important;
}
.no-spin {
    -moz-appearance: textfield !important;
    appearance: textfield !important;
}
