.card-container {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	background-color: #f0f2f5;
	padding: 0px;
}

.card-container {
	padding-top: 5px;
	display: flex;
	flex-direction: column;
	gap: 15px;
	max-width: 900px;
	margin: auto;
}

.card {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	background-color: #ffffff;
	border-radius: 12px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	min-height: 50px
}

.card.highlighted {
	border: 2px solid #3498db;
}

.card-left {
	display: flex;
	align-items: center;
	gap: 15px;
	min-width: 520px;
}

.card-center {
	flex-grow: 1;
	text-align: center;
	font-size: 14px;
	color: #555;
	padding: 0 20px;
	white-space: nowrap;
}

.card-price {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	min-width: 100px;
	margin-right: 20px;
}

.card-time {
	min-width: 50px;
	font-size: 12px;
	color: #999;
	white-space: nowrap;
}

.card-logo {
	width: 32px;
	height: 32px;
	clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
}

/* 개별 로고 색상 */
.card-logo.logo-n { background-color: #888; }
.card-logo.logo-v { background-color: #8e44ad; }
.card-logo.logo-g { background-color: #2ecc71; }
.card-logo.logo-p { background-color: #e74c3c; }

.card-username {
	font-size: 14px;
	font-weight: bold;
	color: #333;
	margin-bottom: 5px;
}

.card-description {
	font-size: 14px;
	color: #555;
	line-height: 1.4;
}

.card-add-descr {
	font-size: 12px;
	color: rgb(6, 173, 239);
	line-height: 1.6;
}

.card-price-info {
	font-size: 14px;
	color: #888;
	text-align: right;
}

.card-min-price {
	font-size: 18px;
	font-weight: bold;
	color: #333;
	margin-top: 7px;
}