/* Container */
.wbl-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px;
	font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI',
		Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	background: #ffffff;
}

/* Statistics Section - Apple Style */
.wbl-stats {
	display: flex;
	gap: 40px;
	margin-bottom: 60px;
	padding: 60px 40px;
	background: #000000;
	border-radius: 18px;
	color: white;
	flex-wrap: wrap;
	justify-content: center;
}

.wbl-stat-item {
	text-align: center;
	flex: 1;
	min-width: 200px;
}

.wbl-stat-label {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	opacity: 0.6;
	margin-bottom: 12px;
	font-weight: 500;
}

.wbl-stat-value {
	font-size: 48px;
	font-weight: 600;
	margin-bottom: 8px;
	letter-spacing: -1px;
}

.wbl-stat-description {
	font-size: 14px;
	opacity: 0.7;
	font-weight: 400;
}

.wbl-progress-circle {
	display: inline-block;
	margin-top: 10px;
}

.wbl-progress-text {
	font-size: 28px;
	font-weight: 600;
	fill: white;
	letter-spacing: -0.5px;
}

/* Filter Buttons - Apple Style */
.wbl-filter {
	display: flex;
	gap: 12px;
	margin-bottom: 40px;
	flex-wrap: wrap;
	justify-content: center;
}

.wbl-filter-btn {
	padding: 10px 24px;
	background: #f5f5f7;
	border: none;
	border-radius: 980px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 400;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	color: #1d1d1f;
}

.wbl-filter-btn:hover {
	background: #e8e8ed;
	transform: scale(1.02);
}

.wbl-filter-btn.active {
	background: #000000;
	color: #ffffff;
}

/* Desktop Grid Layout */
.wbl-grid {
	display: grid;
	gap: 24px;
	margin-bottom: 30px;
}

.wbl-grid-cols-1 {
	grid-template-columns: 1fr;
}

.wbl-grid-cols-2 {
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.wbl-grid-cols-3 {
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.wbl-grid-cols-4 {
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

/* Card - Desktop Style with Overlay */
.wbl-card {
	background: #ffffff;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	border: 1px solid #e5e5e7;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	opacity: 1;
	transform: scale(1);
	display: flex;
	flex-direction: column;
	position: relative;
	height: 400px;
}

.wbl-card:hover {
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
	transform: translateY(-8px);
	border-color: #d2d2d7;
}

/* Completed items - special styling */
.wbl-card.wbl-completed {
	border: 2px solid #4caf50;
	box-shadow: 0 2px 12px rgba(76, 175, 80, 0.2);
}

.wbl-card.wbl-completed:hover {
	box-shadow: 0 12px 32px rgba(76, 175, 80, 0.3);
	border-color: #4caf50;
}

.wbl-card.wbl-hidden {
	display: none;
}

.wbl-card-image {
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: #f5f5f7;
}

.wbl-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.wbl-card:hover .wbl-card-image img {
	transform: scale(1.08);
}

/* Dark overlay */
.wbl-card-image::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0.3) 0%,
		rgba(0, 0, 0, 0.7) 100%
	);
	transition: background 0.3s ease;
}

.wbl-card:hover .wbl-card-image::after {
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0.5) 0%,
		rgba(0, 0, 0, 0.85) 100%
	);
}

/* Completed badge with glow */
.wbl-badge {
	position: absolute;
	top: 16px;
	right: 16px;
	background: #4caf50;
	color: white;
	padding: 6px 14px;
	border-radius: 12px;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	z-index: 3;
	box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
	animation: wbl-glow 2s ease-in-out infinite;
}

@keyframes wbl-glow {
	0%,
	100% {
		box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
	}
	50% {
		box-shadow: 0 4px 20px rgba(76, 175, 80, 0.6);
	}
}

.wbl-card-content {
	position: relative;
	z-index: 2;
	padding: 24px;
	padding-bottom: 80px;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	color: white;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.wbl-card:hover .wbl-card-content {
	padding-bottom: 24px;
	opacity: 0.3;
}

.wbl-card-title {
	margin: 0 0 12px 0;
	font-size: 24px;
	font-weight: 600;
	color: #ffffff;
	line-height: 1.2;
	letter-spacing: -0.5px;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.wbl-card-categories {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 16px;
}

.wbl-category-badge {
	display: inline-block;
	padding: 4px 12px;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	color: #ffffff;
	border-radius: 12px;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.3px;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.wbl-card-description {
	display: none;
}

/* Progress Bar - Bottom of Card */
.wbl-progress-bar-container {
	margin-bottom: 0;
	opacity: 1;
	transform: translateY(0);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.wbl-card:hover .wbl-progress-bar-container {
	opacity: 0;
	transform: translateY(-10px);
	pointer-events: none;
}

.wbl-progress-label {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	margin-bottom: 10px;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 500;
}

.wbl-progress-bar {
	width: 100%;
	height: 4px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 10px;
	overflow: hidden;
}

.wbl-progress-fill {
	height: 100%;
	background: #ffffff;
	border-radius: 10px;
	transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.wbl-completed .wbl-progress-fill {
	background: #4caf50;
	box-shadow: 0 0 10px rgba(76, 175, 80, 0.8);
}

/* Circular Progress - Center on Hover */
.wbl-progress-circle-center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	z-index: 4;
	opacity: 0;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	pointer-events: none;
}

.wbl-card:hover .wbl-progress-circle-center {
	transform: translate(-50%, -50%) scale(1);
	opacity: 1;
}

.wbl-progress-circle-center svg {
	filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.wbl-progress-circle-center .wbl-circle-bg {
	fill: none;
	stroke: rgba(255, 255, 255, 0.2);
	stroke-width: 8;
}

.wbl-progress-circle-center .wbl-circle-progress {
	fill: none;
	stroke: #ffffff;
	stroke-width: 8;
	stroke-linecap: round;
	transition: stroke-dashoffset 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.wbl-completed .wbl-progress-circle-center .wbl-circle-progress {
	stroke: #4caf50;
}

.wbl-progress-circle-center .wbl-circle-text {
	font-size: 32px;
	font-weight: 700;
	fill: white;
	text-anchor: middle;
	dominant-baseline: middle;
}

.wbl-progress-circle-center .wbl-circle-label {
	font-size: 12px;
	font-weight: 500;
	fill: rgba(255, 255, 255, 0.8);
	text-anchor: middle;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Card Links - Overlay Buttons */
.wbl-card-links {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	gap: 0;
	padding: 0;
	border: none;
	opacity: 0;
	transform: translateY(100%);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 5;
}

.wbl-card:hover .wbl-card-links {
	opacity: 1;
	transform: translateY(0);
	animation: wbl-button-entrance 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s
		backwards;
}

@keyframes wbl-button-entrance {
	0% {
		transform: translateY(20px);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

.wbl-link {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 20px 16px;
	background: #000000;
	color: #ffffff;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border: none;
	letter-spacing: 0.3px;
	position: relative;
	overflow: hidden;
}

/* Pulse animation on card hover */
.wbl-card:hover .wbl-link {
	animation: wbl-button-pulse 2s ease-in-out infinite;
}

@keyframes wbl-button-pulse {
	0%,
	100% {
		box-shadow: inset 0 0 0 0 rgba(255, 255, 255, 0);
	}
	50% {
		box-shadow: inset 0 0 20px 0 rgba(255, 255, 255, 0.1);
	}
}

/* Shimmer effect */
.wbl-link::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	transition: left 0.5s;
}

.wbl-card:hover .wbl-link::before {
	animation: wbl-shimmer 3s infinite;
}

@keyframes wbl-shimmer {
	0% {
		left: -100%;
	}
	50%,
	100% {
		left: 100%;
	}
}

.wbl-completed .wbl-link {
	background: #1d1d1f;
}

.wbl-link:first-child {
	border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.wbl-link:hover {
	background: #1d1d1f;
	color: #ffffff;
	transform: scale(1.05);
	box-shadow: inset 0 0 30px 0 rgba(255, 255, 255, 0.15);
}

.wbl-link:active {
	transform: scale(0.98);
}

.wbl-completed .wbl-link:hover {
	background: #4caf50;
	box-shadow: inset 0 0 30px 0 rgba(255, 255, 255, 0.2);
}

.wbl-link .dashicons {
	font-size: 18px;
	width: 18px;
	height: 18px;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Icon animations on individual button hover */
.wbl-link:hover .dashicons-book-alt {
	animation: wbl-book-flip 0.6s ease-in-out;
}

@keyframes wbl-book-flip {
	0%,
	100% {
		transform: rotateY(0deg);
	}
	50% {
		transform: rotateY(180deg);
	}
}

.wbl-link:hover .dashicons-external {
	animation: wbl-arrow-bounce 0.6s ease-in-out infinite;
}

@keyframes wbl-arrow-bounce {
	0%,
	100% {
		transform: translate(0, 0);
	}
	50% {
		transform: translate(4px, -4px);
	}
}

.wbl-link-text {
	display: inline;
	position: relative;
}

/* Underline animation on hover */
.wbl-link:hover .wbl-link-text::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 1px;
	background: currentColor;
	animation: wbl-underline 0.3s ease-out;
}

@keyframes wbl-underline {
	from {
		width: 0;
	}
	to {
		width: 100%;
	}
}

/* No Items Message */
.wbl-no-items {
	text-align: center;
	padding: 80px 20px;
	color: #6e6e73;
	font-size: 17px;
	grid-column: 1 / -1;
	font-weight: 400;
}

/* Loading State */
.wbl-loading {
	text-align: center;
	padding: 60px;
}

.wbl-loading::after {
	content: '';
	display: inline-block;
	width: 40px;
	height: 40px;
	border: 3px solid #e5e5e7;
	border-top: 3px solid #000000;
	border-radius: 50%;
	animation: wbl-spin 0.8s linear infinite;
}

@keyframes wbl-spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* Pagination */
.wbl-pagination {
	margin-top: 40px;
	text-align: center;
}

.wbl-pagination ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.wbl-pagination li {
	display: inline-block;
}

.wbl-pagination a,
.wbl-pagination span {
	display: block;
	padding: 10px 16px;
	background: #f5f5f7;
	color: #1d1d1f;
	text-decoration: none;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	min-width: 44px;
	text-align: center;
}

.wbl-pagination a:hover {
	background: #000000;
	color: #ffffff;
	transform: translateY(-2px);
}

.wbl-pagination .current {
	background: #000000;
	color: #ffffff;
}

.wbl-pagination .dots {
	background: transparent;
	cursor: default;
}

/* Load More Button */
.wbl-load-more-container {
	text-align: center;
	margin-top: 40px;
}

.wbl-load-more {
	padding: 16px 40px;
	background: #000000;
	color: #ffffff;
	border: none;
	border-radius: 980px;
	font-size: 15px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	letter-spacing: 0.3px;
}

.wbl-load-more:hover {
	background: #1d1d1f;
	transform: scale(1.05);
}

.wbl-load-more:active {
	transform: scale(0.98);
}

.wbl-load-more:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.wbl-load-more.wbl-loading::after {
	content: '';
	display: inline-block;
	width: 14px;
	height: 14px;
	margin-left: 10px;
	border: 2px solid #ffffff;
	border-top: 2px solid transparent;
	border-radius: 50%;
	animation: wbl-spin 0.6s linear infinite;
	vertical-align: middle;
}

/* Mobile Pagination */
@media (max-width: 768px) {
	.wbl-pagination {
		margin-top: 30px;
	}

	.wbl-pagination a,
	.wbl-pagination span {
		padding: 8px 12px;
		font-size: 13px;
		min-width: 40px;
	}

	.wbl-load-more {
		width: calc(100% - 32px);
		margin: 0 16px;
	}
}

/* Mobile Styles - Spotify-like List View */
@media (max-width: 768px) {
	.wbl-container {
		padding: 20px 0;
		background: #ffffff;
	}

	.wbl-stats {
		flex-direction: column;
		padding: 40px 20px;
		margin-bottom: 30px;
		border-radius: 0;
	}

	.wbl-stat-item {
		min-width: 100%;
	}

	.wbl-stat-value {
		font-size: 40px;
	}

	.wbl-filter {
		justify-content: flex-start;
		padding: 0 16px;
		margin-bottom: 20px;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		-ms-overflow-style: none;
	}

	.wbl-filter::-webkit-scrollbar {
		display: none;
	}

	.wbl-filter-btn {
		flex-shrink: 0;
		padding: 8px 20px;
		font-size: 13px;
	}

	/* List View for Mobile */
	.wbl-grid {
		grid-template-columns: 1fr !important;
		gap: 0;
		margin-bottom: 20px;
	}

	.wbl-card {
		border-radius: 0;
		border: none;
		border-bottom: 1px solid #f5f5f7;
		box-shadow: none;
		flex-direction: row;
		align-items: center;
		padding: 12px 16px;
		background: #ffffff;
		height: auto;
		position: relative;
	}

	.wbl-card:hover {
		box-shadow: none;
		transform: none;
		background: #fafafa;
	}

	.wbl-card-image {
		position: relative;
		width: 60px;
		height: 60px;
		min-width: 60px;
		border-radius: 8px;
		overflow: visible;
		margin-right: 14px;
	}

	.wbl-card-image::after {
		display: none;
	}

	.wbl-card-image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		border-radius: 8px;
	}

	.wbl-card:hover .wbl-card-image img {
		transform: none;
	}

	.wbl-badge {
		position: absolute;
		top: -6px;
		right: -6px;
		padding: 4px 8px;
		font-size: 8px;
		border-radius: 8px;
		white-space: nowrap;
		z-index: 10;
	}

	.wbl-card-content {
		position: relative;
		padding: 0;
		flex: 1;
		min-width: 0;
		color: #1d1d1f;
		justify-content: center;
	}

	.wbl-card:hover .wbl-card-content {
		opacity: 1;
	}

	.wbl-card-title {
		font-size: 16px;
		font-weight: 500;
		margin: 0 0 4px 0;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		color: #1d1d1f;
		text-shadow: none;
	}

	.wbl-card-categories {
		margin-bottom: 6px;
	}

	.wbl-category-badge {
		font-size: 10px;
		padding: 2px 8px;
		background: #f5f5f7;
		color: #6e6e73;
		border: none;
		backdrop-filter: none;
	}

	.wbl-progress-bar-container {
		margin-bottom: 0;
		opacity: 1;
		transform: none;
	}

	.wbl-card:hover .wbl-progress-bar-container {
		opacity: 1;
		transform: none;
	}

	.wbl-progress-label {
		font-size: 11px;
		margin-bottom: 6px;
		color: #6e6e73;
	}

	.wbl-progress-bar {
		height: 3px;
		background: #e5e5e7;
		width: 100%;
	}

	.wbl-progress-fill {
		background: #000000;
		box-shadow: none;
		width: 100% !important;
		max-width: 100%;
	}

	.wbl-completed .wbl-progress-fill {
		background: #4caf50;
	}

	/* Hide circular progress on mobile */
	.wbl-progress-circle-center {
		display: none;
	}

	.wbl-card-links {
		position: relative;
		display: flex;
		gap: 8px;
		padding: 0;
		border: none;
		margin-left: 12px;
		flex-shrink: 0;
		opacity: 1;
		transform: none;
		animation: none;
	}

	.wbl-card:hover .wbl-card-links {
		animation: none;
	}

	.wbl-link {
		width: 36px;
		height: 36px;
		min-width: 36px;
		padding: 0;
		background: #000000;
		color: #ffffff;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
		border: none;
		animation: none;
		overflow: visible;
	}

	.wbl-link::before {
		display: none;
	}

	.wbl-completed .wbl-link {
		background: #4caf50;
	}

	.wbl-link:hover {
		background: #1d1d1f;
		transform: scale(1.05);
		box-shadow: none;
	}

	.wbl-completed .wbl-link:hover {
		background: #45a049;
	}

	.wbl-link:active {
		transform: scale(0.95);
	}

	.wbl-link .dashicons {
		font-size: 18px;
		width: 18px;
		height: 18px;
		margin: 0;
		animation: none !important;
	}

	.wbl-link-text {
		display: none;
	}

	.wbl-no-items {
		padding: 60px 20px;
		font-size: 15px;
	}
}

@media (max-width: 480px) {
	.wbl-stat-value {
		font-size: 36px;
	}

	.wbl-card-image {
		width: 56px;
		height: 56px;
		min-width: 56px;
	}

	.wbl-card-title {
		font-size: 15px;
	}
}

/* Accessibility */
.wbl-filter-btn:focus,
.wbl-link:focus {
	outline: 2px solid #000000;
	outline-offset: 2px;
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
	.wbl-container {
		background: #000000;
	}

	.wbl-stats {
		background: #1d1d1f;
	}

	.wbl-card {
		background: #1d1d1f;
		border-color: #2d2d2f;
	}

	.wbl-card-title {
		color: #f5f5f7;
	}

	.wbl-card-description,
	.wbl-progress-label {
		color: #a1a1a6;
	}

	.wbl-category-badge {
		background: #2d2d2f;
		color: #a1a1a6;
	}

	.wbl-progress-bar {
		background: #2d2d2f;
	}

	.wbl-progress-fill {
		background: #ffffff;
	}

	.wbl-filter-btn {
		background: #2d2d2f;
		color: #f5f5f7;
	}

	.wbl-filter-btn:hover {
		background: #3d3d3f;
	}

	.wbl-filter-btn.active {
		background: #ffffff;
		color: #000000;
	}

	@media (max-width: 768px) {
		.wbl-card {
			background: #000000;
			border-bottom-color: #2d2d2f;
		}

		.wbl-card:hover {
			background: #1d1d1f;
		}
	}
}

/* Print Styles */
@media print {
	.wbl-filter,
	.wbl-card-links {
		display: none;
	}

	.wbl-card {
		break-inside: avoid;
		box-shadow: none;
		border: 1px solid #ddd;
	}
}

/* Item-specific details */
.wbl-item-details {
	margin: 12px 0 16px 0;
	padding: 12px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	backdrop-filter: blur(10px);
}

.wbl-item-details .wbl-detail {
	margin: 6px 0;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.95);
	line-height: 1.4;
}

.wbl-item-details .wbl-detail strong {
	color: #ffffff;
	font-weight: 600;
	margin-right: 4px;
}

/* Technical Details Card - IMDb Style */
.wbl-technical-details {
	margin: 50px auto;
	max-width: 900px;
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	border: 1px solid #d1d1d6;
}

.wbl-technical-details h3 {
	margin: 0;
	padding: 20px 24px;
	font-size: 20px;
	font-weight: 600;
	color: #1d1d1f;
	background: #f8f8f8;
	border-bottom: 1px solid #d1d1d6;
}

.wbl-details-table {
	width: 100%;
	border-collapse: collapse;
	margin: 0;
}

.wbl-details-table tbody tr {
	border-bottom: 1px solid #f0f0f0;
}

.wbl-details-table tbody tr:last-child {
	border-bottom: none;
}

.wbl-details-table th {
	text-align: left;
	padding: 16px 24px;
	font-weight: 600;
	color: #86868b;
	vertical-align: top;
	width: 200px;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	background: #fafafa;
}

.wbl-details-table td {
	padding: 16px 24px;
	color: #1d1d1f;
	font-size: 15px;
	line-height: 1.5;
	background: #ffffff;
}

/* Remove alternating colors - keep it clean like IMDb */
.wbl-details-table tbody tr:nth-child(even) th,
.wbl-details-table tbody tr:nth-child(even) td {
	background: #ffffff;
}

.wbl-details-table tbody tr:nth-child(odd) th {
	background: #fafafa;
}

/* Mobile responsive */
@media (max-width: 768px) {
	.wbl-technical-details {
		margin: 30px 0;
		border-radius: 0;
		border-left: none;
		border-right: none;
	}

	.wbl-technical-details h3 {
		padding: 16px 20px;
		font-size: 18px;
	}

	.wbl-details-table {
		display: block;
	}

	.wbl-details-table tbody,
	.wbl-details-table tr {
		display: block;
	}

	.wbl-details-table th,
	.wbl-details-table td {
		display: block;
		width: 100%;
		padding: 10px 20px;
		text-align: left;
		background: #ffffff !important;
	}

	.wbl-details-table th {
		padding-bottom: 4px;
		font-size: 11px;
	}

	.wbl-details-table td {
		padding-top: 0;
		padding-bottom: 16px;
	}

	.wbl-details-table tbody tr {
		border-bottom: 1px solid #f0f0f0;
		padding: 12px 0;
	}
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
	.wbl-technical-details {
		background: #1d1d1f;
		border-color: #424245;
		box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
	}

	.wbl-technical-details h3 {
		color: #f5f5f7;
		background: linear-gradient(135deg, #2d2d2f 0%, #1d1d1f 100%);
		border-bottom-color: #f5f5f7;
	}

	.wbl-details-table tbody tr {
		border-bottom-color: #424245;
	}

	.wbl-details-table tbody tr:hover {
		background-color: #2d2d2f;
	}

	.wbl-details-table th {
		color: #86868b;
	}

	.wbl-details-table td {
		color: #f5f5f7;
	}

	.wbl-details-table tbody tr:nth-child(even) {
		background-color: #2d2d2f;
	}
}

/* Target Date Display */
.wbl-target-date {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 10px 0 12px 0;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.9);
}

.wbl-target-date .dashicons {
	font-size: 16px;
	width: 16px;
	height: 16px;
}

.wbl-overdue-text {
	color: #ff6b6b;
	font-weight: 600;
}

.wbl-target-text {
	color: #4ecdc4;
	font-weight: 600;
}

.wbl-date-label {
	color: rgba(255, 255, 255, 0.7);
	font-size: 12px;
	margin-left: 4px;
}

/* Badge Variants */
.wbl-badge-completed {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.wbl-badge-overdue {
	background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
	animation: pulse 2s ease-in-out infinite;
}

.wbl-badge-urgent {
	background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

@keyframes pulse {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.8;
	}
}

/* Overdue Card Styling */
.wbl-card.wbl-overdue {
	border: 2px solid rgba(255, 107, 107, 0.3);
}

.wbl-card.wbl-overdue .wbl-card-image::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 107, 107, 0.1);
	pointer-events: none;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
	.wbl-target-date {
		background: rgba(0, 0, 0, 0.5);
		padding: 6px 10px;
		border-radius: 6px;
		margin: 8px 0;
	}

	.wbl-overdue-text,
	.wbl-target-text,
	.wbl-date-label {
		color: #fff;
	}

	.wbl-overdue-text {
		opacity: 0.9;
	}
}
