
.tour-btn {
	display: flex;
	justify-content: flex-end;
}

.button-container {
	width: 50%;
	display: flex;
	justify-content: space-between;
}

.container1200
{	
	margin-left:auto!important;
	margin-right:auto!important;
	max-width:1170px;
}

@media screen and (max-width: 767.98px){
	.button-container {
		margin-left:10px;
		margin-right:10px;
		width: 100%;		
	}	
}

.button-tour-previous,
.button-tour-next {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    font-style: italic;
    font-weight: bold;
    font-size: 17px;
    transition: color 0.3s ease;
}

.button-tour-previous::before,
.button-tour-next::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

/* Left-pointing triangle for previous button */
.button-tour-previous::before {
    border-right: 12px solid #008B8B;
    margin-right: 8px;
}

/* Right-pointing triangle for next button */
.button-tour-next::after {
    border-left: 12px solid #008B8B;
    margin-left: 8px;
}



.button-tour-previous:hover::before {
    border-right-color: #00b3b3;
}

.button-tour-next:hover::after {
    border-left-color: #00b3b3;
}

.tour-button-container {	
	gap: 2px; /* Small gap between buttons */
	display:flex;
}

.nav-button {
	padding: 5px 5px!important;
	border: none !important;
	font-size:12px !important;
	font-style: italic !important;
	font-weight: bold !important;
	background: linear-gradient(to bottom, #ccc 0%, #8c8c8c 50%, #ccc 100%) !important;
	color: #000000 !important;
	text-align: right ;
	flex: 1;
	cursor: pointer;
	transition: background-color 0.3s ease !important;
	height:37px;
}

.nav-button.active {
	background: #ff0066;
	color: white;
}

/* Hover effects */
.nav-button:hover {
	opacity: 0.9;
}

.pdf-viewer {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    
}

.pdf-container{
	  position: relative;
	  width: 100%;
	  /* 16:9 aspect ratio → 9 / 16 = 56.25% */
	  padding-bottom: 65%;
}

@media screen and (max-width: 767.98px){
	.pdf-container{		  
		  padding-bottom: 190%;
	}
}

.container.row {
    margin: 0;
    padding: 0;
}
