@charset "UTF-8";

#trade-history {
	background: #20232b;
	border: 1px solid #444;
	border-radius: 10px;
	padding: 15px;
	font-family: 'Courier New', monospace;
	color: #EAECEF;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
	width: 100%;
	margin-top: 10px;
	height: auto;
/*
	box-sizing: border-box;
	border-bottom: 1px solid #444;
	padding-bottom: 20px;
	margin-bottom: 20px;*/
}

#trade-history ul {
	list-style: none;
	padding: 0;
	margin: 0;
	max-height: 180px;
	overflow-y: auto;
	scrollbar-width: thin;
}

#trade-history ul::-webkit-scrollbar {
	width: 4px;
}

#trade-history ul::-webkit-scrollbar-thumb {
	background-color: rgba(255, 255, 255, 0.3);
	border-radius: 2px;
}

#trade-history ul::-webkit-scrollbar-thumb {
	background-color: rgba(255, 255, 255, 0.3);
	border-radius: 2px;
}

#trade-history li {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	align-items: center;
	padding: 6px 0;
	margin-bottom: 4px;
	font-size: 0.9rem;
	border-bottom: 1px solid #333;
	background-color: rgba(255, 255, 255, 0.03);
	transition: background 0.2s ease;
}

#trade-history li:last-child {
	margin-bottom: 0;
	border-bottom: none;
}

#trade-history li span {
	display: block;
}

#trade-history li span:nth-child(1) {
	text-align: left;
}

#trade-history li span:nth-child(2) {
	text-align: center;
}

#trade-history li span:nth-child(3) {
	text-align: right;
}

#trade-history li.buy span:nth-child(1) {
	color: #00b386;
}

#trade-history li.sell span:nth-child(1) {
	color: #d9534f;
}

#trade-history li:hover {
	background-color: rgba(255, 255, 255, 0.08);
}