.elementor-3257 .elementor-element.elementor-element-0a83cef{--display:flex;}@media(max-width:767px){.elementor-3257 .elementor-element.elementor-element-0a83cef{--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-3257 .elementor-element.elementor-element-bf22c06{padding:0px 0px 0px 0px;}}/* Start custom CSS for container, class: .elementor-element-0a83cef *//**
 * Arewa Watch History - Frontend Styles
 * Card layout with text overlay on image
 */

/* Increased specificity to override theme styles */
body .arewa-wh-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 30px 20px;
}

body .arewa-wh-message {
	text-align: center;
	padding: 60px 20px;
	color: #666;
	font-size: 18px;
	background: #f9f9f9;
	border-radius: 8px;
	border: 1px solid #e8e8e8;
	margin-bottom: 0;
}

/* Login Required Container */
body .arewa-wh-container.arewa-wh-login-required {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

body .arewa-wh-login-button-wrapper {
	margin-top: 25px;
	text-align: center;
}

body .arewa-wh-login-button {
	display: inline-block;
	padding: 14px 32px;
	background: #667eea;
	color: #fff !important;
	text-decoration: none !important;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 500;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

body .arewa-wh-login-button:hover {
	background: #5568d3;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
	text-decoration: none !important;
}

body .arewa-wh-login-button:active {
	transform: translateY(0);
	box-shadow: 0 2px 6px rgba(102, 126, 234, 0.3);
}

body .arewa-wh-actions {
	margin-bottom: 35px;
	text-align: right;
	padding: 0 20px;
}

body .arewa-wh-actions .button {
	padding: 12px 24px;
	background: #dc3545;
	color: #fff;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-size: 15px;
	font-weight: 500;
	transition: all 0.3s ease;
	box-shadow: 0 2px 4px rgba(220, 53, 69, 0.2);
}

body .arewa-wh-actions .button:hover {
	background: #c82333;
	transform: translateY(-1px);
	box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}

body .arewa-wh-actions .button:active {
	transform: translateY(0);
}

body .arewa-wh-actions .button:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

body .arewa-wh-grid {
	display: grid;
	gap: 8px;
	margin-bottom: 40px;
	grid-template-columns: repeat(var(--columns-desktop, 6), 1fr);
}

/* Responsive Grid - Tablet */
@media (max-width: 1023px) {
	body .arewa-wh-container {
		max-width: 100%;
		padding: 20px 0;
		margin: 0;
	}

	body .arewa-wh-actions {
		padding: 0 15px;
	}

	body .arewa-wh-grid {
		grid-template-columns: repeat(var(--columns-tablet, 4), 1fr);
		gap: 6px;
		padding: 0 8px;
	}
}

/* Responsive Grid - Mobile */
@media (max-width: 767px) {
	body .arewa-wh-container {
		max-width: 100%;
		padding: 15px 0;
		margin: 0;
	}

	body .arewa-wh-grid {
		grid-template-columns: repeat(var(--columns-mobile, 2), 1fr);
		gap: 4px;
		padding: 0 5px;
	}

	body .arewa-wh-actions {
		text-align: center;
		margin-bottom: 25px;
		padding: 0 15px;
	}

	body .arewa-wh-actions .button {
		width: 100%;
		max-width: 300px;
	}

	body .arewa-wh-message {
		margin: 0 15px;
	}

	body .arewa-wh-login-button {
		padding: 12px 28px;
		font-size: 15px;
	}
}

@media (max-width: 767px) {
	body .arewa-wh-login-button {
		padding: 12px 24px;
		font-size: 14px;
		width: 100%;
		max-width: 280px;
	}
}

/* Card Item */
body .arewa-wh-item {
	background: #fff;
	border-radius: 12px;
	overflow: visible;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	position: relative;
}

body .arewa-wh-item:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	transform: translateY(-4px);
}

/* Image Container with Overlay */
body .arewa-wh-item-image {
	position: relative;
	width: 100%;
	height: var(--image-height, 250px);
	overflow: hidden;
	background: #f5f5f5;
	border-radius: 12px 12px 0 0;
}

body .arewa-wh-item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	image-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	backface-visibility: hidden;
	transform: translateZ(0);
}

body .arewa-wh-item:hover .arewa-wh-item-image img {
	transform: scale(1.08);
}

/* Play Button */
body .arewa-wh-play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 5;
	opacity: 1;
	transition: all 0.3s ease;
	pointer-events: none;
}

body .arewa-wh-play-button svg {
	width: 40px;
	height: 40px;
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
	transition: all 0.3s ease;
}

body .arewa-wh-item:hover .arewa-wh-play-button {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1.1);
}

body .arewa-wh-item:hover .arewa-wh-play-button svg {
	filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

body .arewa-wh-play-button circle {
	transition: fill 0.3s ease;
}

body .arewa-wh-item:hover .arewa-wh-play-button circle {
	fill: rgba(255, 255, 255, 1);
}

body .arewa-wh-play-button path {
	transition: fill 0.3s ease;
}

body .arewa-wh-item:hover .arewa-wh-play-button path {
	fill: #667eea;
}

body .arewa-wh-placeholder-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 32px;
	opacity: 0.9;
}

/* Text Overlay */
body .arewa-wh-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
	padding: 20px 15px 15px;
	color: #fff;
	transform: translateY(0);
	transition: all 0.3s ease;
}

body .arewa-wh-item:hover .arewa-wh-overlay {
	background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
}

body .arewa-wh-overlay .arewa-wh-item-title {
	margin: 0 0 10px 0;
	font-size: 16px;
	line-height: 1.4;
	font-weight: 600;
	color: #fff;
	min-height: auto;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

body .arewa-wh-overlay .arewa-wh-item-title a {
	color: #fff;
	text-decoration: none;
	transition: color 0.3s ease;
}

body .arewa-wh-overlay .arewa-wh-item-title a:hover {
	color: #fff;
	opacity: 0.9;
}

body .arewa-wh-overlay .arewa-wh-item-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.95);
	align-items: center;
}

body .arewa-wh-overlay .arewa-wh-item-type {
	background: rgba(255, 255, 255, 0.25);
	backdrop-filter: blur(10px);
	color: #fff;
	padding: 4px 10px;
	border-radius: 12px;
	font-weight: 500;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

body .arewa-wh-overlay .arewa-wh-item-date {
	color: rgba(255, 255, 255, 0.9);
	font-size: 11px;
	flex: 1;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Content (fallback when image is hidden) */
body .arewa-wh-item-content {
	padding: 18px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

body .arewa-wh-item-content .arewa-wh-item-title {
	margin: 0 0 12px 0;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 600;
	min-height: 48px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

body .arewa-wh-item-content .arewa-wh-item-title a {
	color: #1a1a1a;
	text-decoration: none;
	transition: color 0.3s ease;
	display: block;
}

body .arewa-wh-item-content .arewa-wh-item-title a:hover {
	color: #667eea;
}

body .arewa-wh-item-content .arewa-wh-item-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 16px;
	font-size: 13px;
	color: #666;
	align-items: center;
}

body .arewa-wh-item-content .arewa-wh-item-type {
	background: #f0f4ff;
	color: #4a6cf7;
	padding: 5px 12px;
	border-radius: 20px;
	font-weight: 500;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

body .arewa-wh-item-content .arewa-wh-item-date {
	color: #888;
	font-size: 12px;
	flex: 1;
}

/* Remove Button */
body .arewa-wh-remove-item {
	position: absolute;
	top: 10px;
	right: 10px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #666;
	padding: 6px 12px;
	border-radius: 6px;
	cursor: pointer;
	font-size: 12px;
	font-weight: 500;
	transition: all 0.3s ease;
	z-index: 10;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

body .arewa-wh-remove-item:hover {
	background: #dc3545;
	border-color: #dc3545;
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
}

body .arewa-wh-remove-item:active {
	transform: translateY(0);
}

body .arewa-wh-remove-item:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none;
}

/* Pagination */
body .arewa-wh-pagination {
	text-align: center;
	padding: 30px 20px 10px;
}

@media (max-width: 1023px) {
	body .arewa-wh-pagination {
		padding: 30px 15px 10px;
	}
}

@media (max-width: 767px) {
	body .arewa-wh-pagination {
		padding: 30px 10px 10px;
	}
}

body .arewa-wh-pagination .page-numbers {
	display: inline-flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

body .arewa-wh-pagination .page-numbers li {
	display: inline-block;
}

body .arewa-wh-pagination .page-numbers a,
body .arewa-wh-pagination .page-numbers span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 18px;
	background: #f8f9fa;
	border: 2px solid #e9ecef;
	border-radius: 8px;
	text-decoration: none;
	color: #495057;
	transition: all 0.3s ease;
	font-weight: 600;
	min-width: 45px;
	height: 45px;
	text-align: center;
	font-size: 15px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

body .arewa-wh-pagination .page-numbers a:hover {
	background: #667eea;
	border-color: #667eea;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

body .arewa-wh-pagination .page-numbers .current {
	background: #667eea;
	border-color: #667eea;
	color: #fff;
	box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
	font-weight: 700;
}

/* Additional responsive adjustments */
@media (max-width: 480px) {
	body .arewa-wh-item-content {
		padding: 15px;
	}

	body .arewa-wh-item-content .arewa-wh-item-title {
		font-size: 15px;
		min-height: 45px;
	}

	body .arewa-wh-item-image {
		height: calc(var(--image-height, 250px) * 0.9);
	}

	body .arewa-wh-play-button svg {
		width: 0px;
		height: 40px;
	}

	body .arewa-wh-overlay {
		padding: 15px 12px 12px;
	}

	body .arewa-wh-overlay .arewa-wh-item-title {
		font-size: 14px;
	}

	body .arewa-wh-pagination .page-numbers {
		gap: 6px;
	}

	body .arewa-wh-pagination .page-numbers a,
	body .arewa-wh-pagination .page-numbers span {
		padding: 10px 14px;
		min-width: 40px;
		height: 40px;
		font-size: 14px;
	}
}

/* Loading state */
body .arewa-wh-loading {
	opacity: 0.6;
	pointer-events: none;
	position: relative;
}

body .arewa-wh-loading::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 24px;
	height: 24px;
	margin: -12px 0 0 -12px;
	border: 3px solid #667eea;
	border-top-color: transparent;
	border-radius: 50%;
	animation: arewa-wh-spin 0.7s linear infinite;
	z-index: 10;
}

@keyframes arewa-wh-spin {
	to {
		transform: rotate(360deg);
	}
}

/* Smooth fade animations */
body .arewa-wh-item {
	animation: arewa-wh-fade-in 0.4s ease-out;
}

@keyframes arewa-wh-fade-in {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Modal Styles */
body .arewa-wh-modal-overlay {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	width: 100% !important;
	height: 100% !important;
	background: rgba(0, 0, 0, 0.6) !important;
	backdrop-filter: blur(4px);
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	z-index: 999999 !important;
	opacity: 1 !important;
	visibility: visible !important;
	pointer-events: auto !important;
	animation: arewaWhFadeIn 0.3s ease-out forwards;
}

body .arewa-wh-modal {
	background: #fff !important;
	border-radius: 12px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
	max-width: 90%;
	width: 100%;
	max-width: 450px;
	margin: 20px;
	transform: scale(0.9);
	animation: arewaWhModalSlideIn 0.3s ease-out forwards;
	overflow: hidden;
	position: relative !important;
	z-index: 1000000 !important;
	pointer-events: auto !important;
}

@keyframes arewaWhModalSlideIn {
	from {
		transform: scale(0.9) translateY(-20px);
		opacity: 0;
	}
	to {
		transform: scale(1) translateY(0);
		opacity: 1;
	}
}

@keyframes arewaWhFadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

@keyframes arewaWhModalSlideOut {
	from {
		transform: scale(1) translateY(0);
		opacity: 1;
	}
	to {
		transform: scale(0.9) translateY(-20px);
		opacity: 0;
	}
}

body .arewa-wh-modal-header {
	padding: 24px 24px 16px;
	border-bottom: 1px solid #e5e7eb;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

body .arewa-wh-modal-title {
	margin: 0;
	font-size: 20px;
	font-weight: 600;
	color: #111827;
	line-height: 1.4;
}

body .arewa-wh-modal-close {
	background: none;
	border: none;
	font-size: 24px;
	color: #6b7280;
	cursor: pointer;
	padding: 0;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	transition: all 0.2s ease;
	line-height: 1;
}

body .arewa-wh-modal-close:hover {
	background: #f3f4f6;
	color: #111827;
}

body .arewa-wh-modal-body {
	padding: 24px;
	color: #374151;
	line-height: 1.6;
	font-size: 15px;
}

body .arewa-wh-modal-footer {
	padding: 16px 24px 24px;
	border-top: 1px solid #e5e7eb;
	display: flex;
	gap: 12px;
	justify-content: flex-end;
}

body .arewa-wh-modal-button {
	padding: 10px 24px;
	border: none;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
	min-width: 100px;
}

body .arewa-wh-modal-button-primary {
	background: #667eea;
	color: #fff;
}

body .arewa-wh-modal-button-primary:hover {
	background: #5568d3;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

body .arewa-wh-modal-button-secondary {
	background: #f3f4f6;
	color: #374151;
}

body .arewa-wh-modal-button-secondary:hover {
	background: #e5e7eb;
}

body .arewa-wh-modal-button-danger {
	background: #ef4444;
	color: #fff;
}

body .arewa-wh-modal-button-danger:hover {
	background: #dc2626;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

@media (max-width: 767px) {
	body .arewa-wh-modal {
		margin: 15px;
		max-width: calc(100% - 30px);
	}

	body .arewa-wh-modal-header {
		padding: 20px 20px 14px;
	}

	body .arewa-wh-modal-title {
		font-size: 18px;
	}

	body .arewa-wh-modal-body {
		padding: 20px;
		font-size: 14px;
	}

	body .arewa-wh-modal-footer {
		padding: 14px 20px 20px;
		flex-direction: column;
	}

	body .arewa-wh-modal-button {
		width: 100%;
		min-width: auto;
	}
}/* End custom CSS */