/* my item content filter styles */
.my_item_content_filter {
	display: flex;
	flex-direction: row;
	font-size: 14px;
}
.my_item_content_filter .content_filter select {
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 1rem center;
	-moz-appearance: none; 
	-webkit-appearance: none; 
	appearance: none;
	/* and then whatever styles you want*/
	background-color: #fff;
	padding: 0px 15px;
	line-height: 36px;
	border: solid 1px #ddd;
	font-size: 14px;
	border-radius: 20px;
	min-width: 120px;
}
	
/* my item listing styles */
.my_item_listing_header {
    display: flex;
    margin-top: 20px;
    margin-bottom: 30px;
    padding: 0px;
    justify-content: space-between;
    align-items: center;
	min-height: 38px;
}
.my_item_listing_wrapper {
    min-height: 500px;
	display: flex;
	flex-direction: column;
}
.my_item_listing_wrapper .no_content {
	font-size: 16px;
	color: #666;
	text-align: center;
	margin: 40px auto;
	padding: 20px;
	max-width: 400px;
}
.my_item_listing_wrapper .no_content:before {
	content: "";
	display: block;
	width: 100px;
	height: 50px;
	margin: 0 auto 20px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.my_item_listing_wrapper .no_content a {
	color: #ff6600;
	font-weight: bold;
	text-decoration: none;
	transition: all 0.2s ease;
}
.my_item_listing_wrapper .no_content a:hover {
	text-decoration: underline;
}
@media (max-width: 767px) {
    .my_item_listing_header {
        margin-top: 15px;
        margin-bottom: 20px;
    }
}

/* my item wrapper styles */
.my_item_wrapper {
    padding: 0px 0px 15px 0px;
	margin: 15px 0px;
    margin-top: 10px;
	border-bottom: solid 1px #eee;
	position: relative;
}
.my_item_wrapper .item_meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 13px;
    color: var(--text-secondary, #000);
	position: absolute;
	top: 0px;
	gap: 10px;
	right: 0px;
}
.my_item_wrapper .item_meta .offer_counter {
	font-size: 13px;
	padding: 2px 5px;
	border-radius: 5px;
	background-color: rgba(255, 102, 0, 0.1);
	color: #ff6600;
	display: inline-block;
}
.my_item_wrapper .item_data {
}
.my_item_wrapper .item_data a {
    display: flex;
    flex-direction: row;
	text-decoration: none;
	color: #333;
	gap: 20px;
}
.my_item_wrapper .item_data .item_image_wrap {
    flex-shrink: 0;
}
.my_item_wrapper .item_data .item_image_wrap .item_image_container {
	position: relative;
	width: 120px;
	height: 120px;
    border-radius: 10px;
    overflow: hidden;
}
.my_item_wrapper .item_data .item_image_wrap .item_image_container .photo_count {
    position: absolute;
    top: 8px;
    left: 8px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}
.my_item_wrapper .item_data .item_image_wrap .item_image_container .item_image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.my_item_wrapper .item_data .item_info_wrap {
	flex: 1;
}
.my_item_wrapper .item_data .item_info_wrap .item_title {
	font-size: 15px;
	line-height: 1.3em;
	margin-bottom: 10px;
	text-overflow: ellipsis;
}
.my_item_wrapper .item_data .item_info_wrap .item_title .wanted {
	font-size: 13px;
	padding: 2px 5px;
	border-radius: 5px;
    background-color:rgb(0, 42, 255, 0.1);
	color: blue;
}
.my_item_wrapper .item_data .item_info_wrap .item_title .sell {
	font-size: 13px;
	padding: 2px 5px;
	border-radius: 5px;
    margin-right: 3px;
    background-color: rgba(255, 102, 0, 0.1);
    color: #ff6600;
}
.my_item_wrapper .item_data .item_info_wrap .item_price {
	font-size: 16px;
	font-weight: bold;
	color: #ff6600;
	margin-bottom: 5px;
}
.my_item_wrapper .item_data .item_info_wrap .item_data_line {
	font-size: 12px;
	color: #666;
	margin-bottom: 5px;
}

/* item action row styles */
.my_item_wrapper .item_action_row {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	gap: 10px;
}
.my_item_wrapper .item_action_row button,
.my_item_wrapper .item_action_row .item_button {
	border-radius: 16px;
	margin-bottom: 8px;
	font-size: 12px;
	line-height: 32px;
	margin-bottom: 5px;
	cursor: pointer;
	border: solid 1px #ccc;
	padding: 0 15px;
	background-color: #fff;
	color: #333;
	display: block;
}

.my_item_wrapper .item_action_row button:hover,
.my_item_wrapper .item_action_row .item_button:hover {
	background: linear-gradient(135deg, #e9ecef, #dee2e6);
}

.my_item_wrapper .item_action_row button:active,
.my_item_wrapper .item_action_row .item_button:active {
	transform: translateY(1px);
	box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.my_item_wrapper .item_action_row button i,
.my_item_wrapper .item_action_row .item_button i {
	margin-right: 6px;
	font-size: 12px;
}

.my_item_wrapper .item_action_row .promote_btn {
	background: linear-gradient(135deg, #4dabf7, #3b89d9);
	color: white;
	border: none;
}
.my_item_wrapper .item_action_row .promote_btn:hover {
	background: linear-gradient(135deg, #3b89d9, #2a6bbf);
}
.my_item_wrapper .item_action_row .promote_btn.disabled {
	background: none;
	background-color: #eee;
	color: #999;
	cursor: not-allowed;
	cursor: not-allowed;
}
.my_item_wrapper .item_action_row .remove_button {
	background: linear-gradient(135deg, #ff6b6b, #f03e3e);
	color: white;
	border: none;
}
.my_item_wrapper .item_action_row .remove_button:hover {
	background: linear-gradient(135deg, #f03e3e, #d62828);
}

@media (max-width: 767px) {
	.my_item_wrapper .item_meta {
		position: static;
	}
	.my_item_wrapper .item_data a {
		gap: 10px;
	}
	.my_item_wrapper .item_data .item_image_wrap {
		width: 100%;
		height: auto;
		max-width: 100px;
	}
    .my_item_wrapper .item_data .item_image_wrap .item_image_container {
        width: 100px;
        height: 100px;
    }
	.my_item_wrapper .item_action_row {
		margin-top: 15px;
	}
}
