.shipment {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
	background-color: #fff;
	padding: 20px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.latest-message:hover {
	cursor: pointer;
}
.arrival-country:hover {
	cursor: pointer;
}
.shipment .tracking-number {
	font-weight: bold;
}

.shipment .tracking-number-center {
	font-weight: 500;
}

.shipment .copy-button {
	position: relative;
	background-color: #FFF;
	color: #666;
	padding: 3px 6px;
	border-radius: 4px;
	border: 1px solid #666;
	cursor: default;
	font-size: 10px;
}

.shipment .outbound-time {
	font-size: 12px;
	color: #888;
	margin-top: 5px;
}

.shipment .outbound-time-center {
	font-size: 13px;
	color: #666;
	margin-top: 5px;
	text-align: center;
}

.shipment .country-logo {
	width: 30px;
	height: 30px;
	margin-right: 10px;
}

.shipment .arrow-icon {
	width: 500px;
	height: 12px;
	margin-right: 10px;
}

.shipment .latest-message {
	font-size: 14px;
	color: #666;
}

.shipment .arrival-country {
	display: flex;
	align-items: center;
}

.shipment .city-logo {
	width: 30px;
	height: 30px;
	margin-left: 5px;
}