.ccw-wrapper {
	width: 100%;
}

.ccw-box {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	cursor: pointer;
	background-color: #1B1B1B;
	border-radius: 50px;
	padding: 14px 22px;
	user-select: none;
	transition: transform 0.15s ease, opacity 0.15s ease;
	position: relative;
	outline: none;
}

.ccw-box:active {
	transform: scale(0.97);
}

.ccw-box:focus-visible {
	box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.2);
}

.ccw-code {
	color: #FFFFFF;
	font-weight: 700;
	font-size: 16px;
	line-height: 1;
	letter-spacing: 1px;
	white-space: nowrap;
}

.ccw-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	background-color: #FFFFFF;
	border-radius: 8px;
	flex-shrink: 0;
}

.ccw-icon svg rect,
.ccw-icon svg path {
	stroke: #1B1B1B;
}

.ccw-box.ccw-copied {
	opacity: 0.9;
}
