.bule-hora-popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.75);
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, visibility 0.4s ease;
	padding: 20px;
	box-sizing: border-box;
}

body.admin-bar .bule-hora-popup-overlay {
	top: var(--wp-admin--admin-bar--height, 32px);
	height: calc(100vh - var(--wp-admin--admin-bar--height, 32px));
}
@media screen and (max-width: 782px) {
	body.admin-bar .bule-hora-popup-overlay {
		top: 46px;
		height: calc(100vh - 46px);
	}
}

.bule-hora-popup-overlay.is-visible {
	opacity: 1;
	visibility: visible;
}

.bule-hora-popup-container {
	background: linear-gradient(135deg, #005daa, #003b6d);
	border-radius: 16px;
	width: 100%;
	max-width: 600px;
	box-shadow: 0 20px 40px rgba(0,0,0,0.4);
	position: relative;
	overflow: hidden;
	transform: translateY(20px);
	transition: transform 0.4s ease;
	display: flex;
	flex-direction: column;
}

.bule-hora-popup-overlay.is-visible .bule-hora-popup-container {
	transform: translateY(0);
}

.bule-hora-popup-close {
	position: absolute;
	top: 15px;
	right: 15px;
	background: rgba(255, 255, 255, 0.2);
	border: none;
	color: #ffffff;
	font-size: 28px;
	line-height: 1;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s ease;
}

.bule-hora-popup-close:hover {
	background: rgba(255, 255, 255, 0.4);
}

.bule-hora-popup-image-wrapper {
	position: relative;
	width: 100%;
	height: 300px;
	overflow: hidden;
}

.bule-hora-popup-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.bule-hora-popup-content {
	padding: 30px;
	text-align: center;
}

.bule-hora-popup-message {
	color: #ffffff;
	font-family: 'Nyala', 'Abyssinica SIL', sans-serif; /* Amharic fonts */
	font-size: 22px;
	line-height: 1.6;
	margin: 0;
	font-weight: 500;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

@media (max-width: 600px) {
	.bule-hora-popup-image-wrapper {
		height: 200px;
	}
	.bule-hora-popup-message {
		font-size: 18px;
	}
	.bule-hora-popup-content {
		padding: 20px;
	}
}