/* ELEGANT ELEMENTS CSS */

/* SEARCH INPUT CONTAINER */
.search-input {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
}

/* SEARCH INPUT */
#searchInput {
    width: 100% !important;
    padding: 14px 50px 14px 16px !important;
    border: 1px solid #d1d5db !important;
    border-radius: 8px !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    background: #ffffff !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
    color: #374151 !important;
}

#searchInput::placeholder {
    color: #9ca3af !important;
}

#searchInput:focus {
    border-color: #3b82f6 !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
    outline: none !important;
}

/* SEARCH BUTTON */
#searchBtn {
    position: absolute !important;
    right: 8px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: #3b82f6 !important;
    color: white !important;
    border: none !important;
    padding: 8px 12px !important;
    border-radius: 6px !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    cursor: pointer !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

#searchBtn:hover {
    background: #2563eb !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
}

/* SEARCH ICON */
#searchIcon {
    font-size: 14px !important;
    color: white !important;
}

/* CATEGORY DROPDOWN */
#categoryDropdown {
    width: 100% !important;
    padding: 12px 40px 12px 16px !important;
    border: 1px solid #d1d5db !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    background: #ffffff !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    appearance: none !important;
    color: #374151 !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
}

#categoryDropdown:focus {
    border-color: #10b981 !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1) !important;
    outline: none !important;
}

#categoryDropdown:hover {
    border-color: #9ca3af !important;
}

/* SORT DROPDOWN */
#sortDropdown {
    width: 100% !important;
    padding: 12px 40px 12px 16px !important;
    border: 1px solid #d1d5db !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    background: #ffffff !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    appearance: none !important;
    color: #374151 !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
}

#sortDropdown:focus {
    border-color: #f59e0b !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1) !important;
    outline: none !important;
}

#sortDropdown:hover {
    border-color: #9ca3af !important;
}

/* FILTER BUTTON */
#filterBtn {
    background: #10b981 !important;
    color: white !important;
    border: none !important;
    padding: 12px 24px !important;
    border-radius: 6px !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    cursor: pointer !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.2s ease !important;
    margin-right: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    flex: 1 !important;
    min-width: 120px !important;
}

#filterBtn:hover {
    background: #059669 !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
}

/* RESET BUTTON */
#resetBtn {
    background: #6b7280 !important;
    color: white !important;
    border: none !important;
    padding: 12px 24px !important;
    border-radius: 6px !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    cursor: pointer !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    flex: 1 !important;
    min-width: 120px !important;
}

#resetBtn:hover {
    background: #4b5563 !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
    text-decoration: none !important;
    color: white !important;
}


