.carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0,0,0,0.3);
	border: none;
	color: white;
	font-size: 32px;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border-radius: 8px;
	transition: all 0.3s ease;
	z-index: 10;
}

.carousel-btn:hover {
    background: rgba(0,0,0,0.5);
    transform: translateY(-50%) scale(1.05);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    font-size: 32px;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
    line-height: 1;
}

.close-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

.modal_carousel_img {
	width:70vw;
	height:70vh;

	margin: auto;
	padding: 0px;

	display: flex;
	align-items: center;
	justify-content: center;
}

.modal_carousel_img img {
	max-width:90%;
	height:auto;
	max-height:90%;
}
