/* -------Animals2--Description box Begin----------------- */


.asdf {
}
#animals-2-description-container {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background-color: #f9f9f9;
	width: 100%;
	margin: 20px auto;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
	color: #555;
	box-sizing: border-box;
	/* Учет padding для равномерных отступов */
	}

		#animals-2-description-container h1 {
			text-align: center;
			color: #333;
			font-size: 2em;
			margin-top: 0;
			margin-bottom: 20px;
		}

		#animals-2-description-container p {
			font-size: 1.1em;
			line-height: 1.7;
			text-align: justify;
			color: #333;
		}

		#animals-2-description-container .highlight {
			font-weight: bold;
			color: #2a52be;
			/* Синий текст */
			background-color: transparent;
			/* Убираем фоновый цвет */
		}

		#animals-2-description-container .pdf-link {
			color: #d9534f;
			font-weight: bold;
			text-decoration: none;
		}

		#animals-2-description-container .pdf-link:hover {
			text-decoration: underline;
		}

/* -------Animals2--Description box End------------------- */
/* -------Animals2--Arrows1 Back Next Begin ----------------*/
.navigation-arrows {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 20px 0;
	font-family: Arial, sans-serif;
}
.arrow-container {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 20px;
	border: 2px solid #4CAF50;
	/* Зеленая рамка */
	border-radius: 50px;
	background-color: #A5D6A7;
	/* Светло-зеленая заливка */
	color: #ffffff;
	/* Белый текст */
	font-size: 16px;
	font-weight: bold;
	text-transform: uppercase;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	text-decoration: none;
}
.arrow-container:hover {
	background-color: #66BB6A;
	/* Более насыщенный зеленый при наведении */
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
	transform: scale(1.05);
}
.arrow-icon {
	display: inline-block;
	margin: 0 10px;
}
.arrow-back .arrow-icon {
	transform: rotate(180deg);
	/* Поворот стрелки для кнопки "Back" */
}
@media (max-width: 768px) {
	.arrow-container {
		font-size: 14px;
		padding: 8px 15px;
	}
}
/* -------Animals2--Arrows1 Back Next End ------------------*/