.csp-currency-switcher {
	display: inline-block;
	vertical-align: middle;
	margin: 0 4px;
	position: relative;
	z-index: 9999;
}
.csp-currency-select {
	padding: 5px 10px;
	border-radius: 4px;
	border: 1px solid #ccc;
	background-color: #ffffff !important;
	color: #333333 !important; /* Force dark text so it doesn't blend with light background */
	font-size: 13px !important;
	min-width: 70px;
	height: auto;
	cursor: pointer;
	outline: none;
}
.csp-custom-select {
	position: relative;
	display: inline-block;
	min-width: 120px;
	user-select: none;
	font-family: inherit;
}
.csp-select-selected {
	background-color: #fff;
	border: 1px solid #777;
	padding: 4px 10px;
	border-radius: 4px;
	cursor: pointer;
	display: flex;
	align-items: center;
	color: #333;
	font-size: 13px;
	font-family: inherit;
	line-height: normal;
}
.csp-select-selected::after {
	content: '';
	margin-left: auto;
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid #333;
	border-bottom: 0;
	transform: translateY(2px);
}
.csp-select-items {
	position: absolute;
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 4px;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 99;
	margin-top: 4px;
	margin-bottom: 0;
	padding: 0;
	list-style: none;
	box-shadow: 0 4px 6px rgba(0,0,0,0.1);
	max-height: 250px;
	overflow-y: auto;
}
.csp-select-hide {
	display: none !important;
}
.csp-select-item {
	padding: 8px 12px !important;
	cursor: pointer !important;
	display: flex !important;
	align-items: center !important;
	color: #333 !important;
	font-size: 14px !important;
	transition: background-color 0.2s !important;
	margin: 0 !important;
	border: none !important;
	background: none !important;
}
.csp-select-item:hover {
	background-color: #f1f1f1 !important;
}
.csp-selected-item {
	background-color: #f9f9f9 !important;
	font-weight: bold !important;
}
.csp-select-items {
	display: flex !important;
	flex-direction: column !important;
	width: 100% !important;
}
.csp-select-hide {
	display: none !important;
}

/* Inherit theme sizing when placed inside a menu */
.csp-menu-item .csp-select-selected {
	height: auto !important;
}

.csp-menu-item .csp-currency-switcher {
	margin: 0 4px !important;
	transform: translateY(-2px);
}
