/**
 * Sitemap Notice Styles
 * Стилі для сповіщення про оновлення карти сайту
 */

.sitemap-notice {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: #4CAF50;
	color: white;
	padding: 15px 50px 15px 20px;
	border-radius: 4px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	z-index: 9999;
	animation: slideIn 0.5s ease;
}

@keyframes slideIn {
	from { 
		transform: translateY(100px); 
		opacity: 0; 
	}
	to { 
		transform: translateY(0); 
		opacity: 1; 
	}
}

.sitemap-notice-close {
	position: absolute;
	top: 10px;
	right: 10px;
	background: none;
	border: none;
	color: white;
	font-size: 20px;
	cursor: pointer;
	opacity: 0.7;
	transition: opacity 0.3s;
}

.sitemap-notice-close:hover {
	opacity: 1;
}