/* Style dla karuzeli ikon */
.carousel-navigated {
	position: relative;
	overflow: hidden;
}

.carousel-navigated .carousel-icons {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 10px;
	text-align: center;
}

.carousel-navigated .carousel-icon {
	width: auto;
	height: 150px;
	margin-bottom: 15px;
}

.carousel-navigated .carousel-title {
	font-size: 1.2rem;
	font-weight: bold;
	color: #0b3b5c;
	text-align: center;
}

/* Kontener dla przycisków nawigacyjnych */
.carousel-navigated .nav-buttons-container {
	display: flex;
	justify-content: center;
	gap: 20px; /* Odstęp między przyciskami */
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 10;
	margin-top: 20px;
}

/* Niestandardowe przyciski nawigacji */
.carousel-navigated .custom-nav-button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 50px;
	height: 50px;
	background-color: #ffd100;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border-radius: 5px;
	color: #0b3b5c;
	font-size: 22px;
	font-weight: bold;
	transition: background-color 0.3s ease;
}

.carousel-navigated .custom-nav-button:hover {
	background-color: #e6bd00;
}

.carousel-navigated .icon-carousel-button-prev {
	left: 16px;
}

.carousel-navigated .icon-carousel-button-next {
	right: 16px;
}

/* Kontener na przyciski dla mobile */
.carousel-navigated .mobile-nav-buttons-container {
	display: none; /* Domyślnie ukryty */
}

/* Style dla mobile */
@media (max-width: 767px) {
	/* Ukrywamy przyciski w wersji absolutnej dla mobile */
	.carousel-navigated .custom-nav-button.desktop-only {
		display: none;
	}

	/* Pokazujemy kontener z przyciskami dla mobile */
	.carousel-navigated .mobile-nav-buttons-container {
		display: flex;
		justify-content: center;
		gap: 20px;
		margin-top: 20px;
		width: 100%;
	}

	/* Style dla przycisków w wersji mobile */
	.carousel-navigated .mobile-nav-buttons-container .custom-nav-button {
		position: static;
		transform: none;
		width: 40px;
		height: 40px;
		font-size: 18px;
	}

	.carousel-navigated .carousel-title {
		font-size: 1rem;
	}
}
