/* WSP Product Widget Styles */

.wsp-product-wrapper {
	width: 100%;
}

.wsp-picks-list h3 {
	margin-bottom: 10px;
}

.wsp-product-title {
	font-weight: 600;
	margin-bottom: 20px;
}

.wsp-product-table {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid #e0e0e0;
}

.wsp-product-table thead {
	background: linear-gradient(to bottom, #f8f8f8, #f0f0f0);
}

.wsp-product-table thead th {
	padding: 16px 15px;
	text-align: left;
	font-weight: 600;
	border-bottom: 2px solid #ddd;
	text-transform: uppercase;
}

.wsp-product-table tbody tr {
	border-bottom: 1px solid #e0e0e0;
	transition: all 0.3s ease;
}

.wsp-product-table tbody tr:hover {
	background-color: #fafafa;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.wsp-product-table tbody td {
	padding: 16px 15px;
	vertical-align: top;
	color: var(--e-global-color-6db40cf);
}

/* Rank Column */
.wsp-rank {
	font-weight: 700;
	width: 70px;
	text-align: center;
	color: var(--e-global-color-36aaecf);
}

/* Name Column */
.wsp-name {
	flex: 1;
	min-width: 250px;
}

.wsp-name strong {
	display: block;
	font-weight: 600;
	margin-bottom: 8px;
	color: var(--e-global-color-36aaecf);
}

/* Units Column */
.wsp-units {
	width: 110px;
	text-align: center;
	font-weight: 600;
	color: var(--e-global-color-27ae60);
}

/* Status Column */
.wsp-status {
	width: 130px;
	text-align: center;
}

.wsp-status-available {
	display: inline-block;
	background-color: var(--e-global-color-27ae60);
	color: white;
	padding: 6px 14px;
	border-radius: 4px;
	font-weight: 600;
	text-transform: uppercase;
	box-shadow: 0 2px 4px rgba(39, 174, 96, 0.2);
}

.wsp-status-unavailable {
	display: inline-block;
	background-color: #999;
	color: white;
	padding: 6px 14px;
	border-radius: 4px;
	font-weight: 600;
	text-transform: uppercase;
}

/* Product Info */
.wsp-product-info {
	margin-top: 20px;
	padding-top: 20px;
}

.wsp-product-card {
	padding: 20px;
	margin-bottom: 10px;
	transition: all 0.2s ease;
}

.wsp-product-title {
	margin: 0 0 6px 0;
	font-weight: 600;
}

.wsp-product-category {
	margin: 3px 0;
	font-weight: 500;
}

.wsp-product-event {
	margin: 3px 0;
}

.wsp-product-bet {
	margin: 3px 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.wsp-product-table {
	}

	.wsp-product-table thead th,
	.wsp-product-table tbody td {
		padding: 12px 10px;
	}

	.wsp-product-card {
		padding: 10px;
	}
}

@media (max-width: 768px) {
	.wsp-product-title {
		margin-bottom: 15px;
	}

	.wsp-product-table {
	}

	.wsp-product-table thead th,
	.wsp-product-table tbody td {
		padding: 10px 8px;
	}

	.wsp-rank {
		width: 50px;
	}

	.wsp-units {
		width: 80px;
	}

	.wsp-status {
		width: 100px;
	}

	.wsp-status-available,
	.wsp-status-unavailable {
		padding: 4px 10px;
	}

	.wsp-product-card {
		padding: 8px;
		margin-bottom: 8px;
	}

	.wsp-product-title {
		margin-bottom: 4px;
	}

	.wsp-product-category,
	.wsp-product-event,
	.wsp-product-bet {
	}
}

@media (max-width: 480px) {
	.wsp-product-title {
		margin-bottom: 12px;
	}

	.wsp-product-table {
	}

	.wsp-product-table thead th,
	.wsp-product-table tbody td {
		padding: 8px 6px;
	}

	.wsp-rank {
		width: 40px;
	}

	.wsp-units {
		width: 70px;
	}

	.wsp-status {
		width: 80px;
	}

	.wsp-name strong {
		margin-bottom: 6px;
	}
}
