.city-prompt-modal-container {
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
}

.city-prompt-modal-content {
	background-color: #fff;
	padding: 30px;
	border-radius: 8px;
	text-align: center;
	position: relative;
	max-width: 400px;
	width: 90%;
	box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.city-prompt-modal-close {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 24px;
	font-weight: bold;
	cursor: pointer;
	color: #666;
}

.city-prompt-modal-close:hover {
	color: #000;
}

.city-prompt-modal-buttons {
	display: flex;
	gap: 15px;
	justify-content: center;
	margin-top: 20px;
}

.city-prompt-btn {
	padding: 10px 20px;
	background-color: #007bff;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-weight: bold;
	transition: background-color 0.3s;
}

.city-prompt-btn:hover {
	background-color: #0056b3;
}