/**
 * WebXtrm Industries Pills Widget Styles
 */

.wx-ip-wrap {
	width: 100%;
	box-sizing: border-box;
}

.wx-ip-wrap * {
	box-sizing: border-box;
}

/* ===== SECTION LABEL ===== */
.wx-ip-label-wrap {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}

.wx-ip-label {
	display: inline-flex;
	align-items: center;
	gap: 14px;
}

.wx-ip-label-line {
	display: inline-block;
	width: 40px;
	height: 2px;
	background: #00c9f0;
	flex-shrink: 0;
}

.wx-ip-label-text {
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #00c9f0;
	line-height: 1;
	white-space: nowrap;
}

/* ===== PILLS ROW ===== */
.wx-ip-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

/* ===== PILL ===== */
.wx-ip-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	background: #0f131a;
	border: 1px solid rgba(0, 201, 240, 0.18);
	border-radius: 999px;
	transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
	cursor: default;
}

.wx-ip-pill:hover {
	background: rgba(0, 201, 240, 0.08);
	border-color: rgba(0, 201, 240, 0.5);
	transform: translateY(-2px);
}

.wx-ip-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #00c9f0;
	flex-shrink: 0;
}

.wx-ip-icon svg {
	width: 14px;
	height: 14px;
	fill: #00c9f0;
	color: #00c9f0;
	display: block;
}

.wx-ip-icon i {
	font-size: 14px;
	color: #00c9f0;
	line-height: 1;
}

.wx-ip-text {
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	font-weight: 600;
	color: #ffffff;
	line-height: 1;
	white-space: nowrap;
}
