

#unesco_parent, #extra_parent, #related_parent,.unesco_parent, #chart_parent{border-radius: 5px;}



 #unesco_parent {
        display: flex;
        flex-direction: column; /* Stack items vertically */
        justify-content: center; /* Align items vertically in the center */
        height: 100%; /* Ensure the div takes full height of the parent container */
		padding-top:25px;
		padding-bottom:20px;
    }

#chart_div{width:100%;height:2400px;}

.unesco_country_header{
	font-weight:600;
}


.des_text{
font-size:14px;
color: #6c757d;
margin-top:5px;
}

.area_img {
    border-color: #808080;
    background-color: #ddd;
}
.area_t {
    font-size: 16px !important;
}

.area_p {
    font-size: 18px;
}
.area_heading {
    font-size: 50px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Small screens up to 576px */
@media screen and (max-width: 576px) {
   

    .area_heading {
        font-size: 30px;
    }

    .area_p {
        font-size: 16px;
    }
}

/* Extra small screens up to 320px */
@media screen and (max-width: 320px) {
    .area_heading {
        font-size: 24px;
    }

    .area_p {
        font-size: 14px;
    }
}

/* Tiny screens up to 240px */
@media screen and (max-width: 240px) {
   

    .area_heading {
        font-size: 20px;
    }

    .area_p {
        font-size: 12px;
    }
}




/* Unique Styles for unesco Section */
.unesco-container {
    padding: 20px;
    margin: 0;
    max-width: 100%;
    box-sizing: border-box;
   
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	border-radius:8px;
	overflow: hidden; /* Prevent any content from overflowing */
}

.unesco-header {
    font-size: 2rem; /* Adjust title size */
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Subtle shadow effect */
	margin: 0; /* Reset default margins */
    word-wrap: break-word; /* Break long words to avoid overflow */
}

.unesco-row {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Align vertically */
    flex-wrap: wrap;
}

.unesco-main {
    flex: 1 1 70%; /* Takes up 70% of the space */
    padding: 20px;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.unesco-sidebar.w-site {
    flex: 1 1 25%; /* Takes up 25% of the space */
    display: flex;
    justify-content: center; /* Align horizontally */
    align-items: center; /* Align vertically */
    padding: 20px;
    background: linear-gradient(135deg, #f6d365, #fda085); /* Gradient from light yellow-orange to rich orange */
    border-radius: 12px; /* Slightly larger border radius for softer edges */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Add subtle outer shadow for depth */
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    min-height: 75px; /* Ensures enough height for vertical centering */
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Add hover effect */
}

.unesco-sidebar.x-site {
    flex: 1 1 25%; /* Takes up 25% of the space */
    display: flex;
    justify-content: center; /* Align horizontally */
    align-items: center; /* Align vertically */
    padding: 20px;
    background: linear-gradient(135deg, #ced4da, #e9ecef); /* Lighter Bootstrap secondary gradient */
    border-radius: 12px; /* Slightly larger border radius for softer edges */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Add subtle outer shadow for depth */
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    min-height: 75px; /* Ensures enough height for vertical centering */
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Add hover effect */
}

.unesco-sidebar.t-site {
    flex: 1 1 25%; /* Takes up 25% of the space */
    display: flex;
    justify-content: center; /* Align horizontally */
    align-items: center; /* Align vertically */
    padding: 20px;
    background: linear-gradient(135deg, #00c6ff, #90f7ec); /* Cyan gradient */
    border-radius: 12px; /* Slightly larger border radius for softer edges */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Add subtle outer shadow for depth */
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    min-height: 75px; /* Ensures enough height for vertical centering */
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Add hover effect */
}

.unesco-sidebar.i-site {
        flex: 1 1 25%; /* Takes up 25% of the space */
    display: flex;
    justify-content: center; /* Align horizontally */
    align-items: center; /* Align vertically */
    padding: 20px;
    background: linear-gradient(135deg, #ffcccc, #ff6666); /* Pronounced light red gradient */
    border-radius: 12px; /* Slightly larger border radius for softer edges */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Add subtle outer shadow for depth */
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    min-height: 75px; /* Ensures enough height for vertical centering */
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Add hover effect */
}





.unesco-sidebar span {
    display: block;
    margin: auto;
}


/* General Styles */
.image-gallery {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping for multiple rows */
    gap: 15px; /* Add space between images */
    margin-top: 20px;
    justify-content: center; /* Center images horizontally */
}

.image-item {
    position: relative; /* Make the image item a positioning context */
    flex: 1 1 calc(33.333% - 15px); /* Each image takes up 1/3 of the row minus the gap */
    max-width: calc(33.333% - 15px); /* Ensure max width for each image */
    box-sizing: border-box;
}

.image-item img {
    width: 100%; /* Make images responsive */
    height: auto;
    border-radius: 5px; /* Add rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add subtle shadow */
}




/* Ensure responsiveness for smaller screens */
@media (max-width: 768px) {
    .image-item {
        flex: 1 1 calc(50% - 15px); /* Switch to two images per row on smaller screens */
        max-width: calc(50% - 15px);
    }
}

@media (max-width: 480px) {
    .image-item {
        flex: 1 1 100%; /* One image per row on very small screens */
        max-width: 100%;
    }
	.unesco_country_header{
font-size:12px !important;	
}
}

@media (max-width: 240px) {
    .unesco-sidebar{display:none;}
}

/* General container for the map section */
#map_canvas {
    border-radius: 5px; /* Rounded corners for a modern look */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    overflow: hidden; /* Prevent content overflow */
    margin-top: 20px; /* Add spacing from the content above */
    background-color: #f9f9f9; /* Light background for contrast */
}

/* Styling the iframe for responsiveness */
.responsive-iframe {
    width: 100%; /* Make the iframe take the full width of its container */
    height: 500px; /* Set a default height for the iframe */
    border: none; /* Remove default iframe border */
}
/* Mobile Responsiveness */
@media (max-width: 768px) {
    .responsive-iframe {
        height: 300px; /* Reduce height for smaller screens */
    }

    #map_canvas {
        margin-top: 15px;
    }
}

/* Row Container for Flags */
.flag-row {
    padding: 20px;
    background-color: #f8f9fa; /* Light background color */
    border: 1px solid #ddd; /* Add a subtle border */
    border-radius: 5px; /* Rounded corners for modern design */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    margin-top: 20px; /* Add spacing from the previous section */
}

/* Header Styling */
.flag-row-header {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 25px;
	color:#6c757d;
}

/* Flag Container */
.flag-container {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping for multiple rows */
    gap: 10px; /* Space between flags */
    justify-content: center; /* Center align flags */
}

/* Flag Images */
.area_img {
    width: 60px; /* Fixed width for flags */
    height: auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    border: 1px solid #ddd; /* Add a border to each flag */
    border-radius: 4px; /* Rounded corners */
    transition: transform 0.3s ease; /* Hover effect */
}

.area_img:hover {
    transform: scale(1.1); /* Slight zoom on hover */
}

/* Additional Text */
.extra_size {
    font-size: 16px; /* Larger font size */
    font-weight: bold;
    margin-top: 20px;
	color:#6c757d;
}

/* Responsive Design */
@media (max-width: 768px) {
    .area_img {
        width: 50px; /* Adjust flag size for smaller screens */
    }

.unesco_country_header{
font-size:14px;
}

}





/* Adjustments for small screens */
@media (max-width: 768px) {
    .unesco-main {
        padding: 10px; /* Reduce padding */
        font-size: 16px; /* Smaller font size */
    }
	 .des_text {
        font-size: 13px; /* Smaller font size for medium-small screens */
    }
    
}

@media (max-width: 480px) {
    .unesco-main {
        padding: 5px; /* Further reduce padding for very small screens */
        font-size: 14px; /* Further reduce font size */
    }
	.des_text {
        font-size: 12px; /* Smaller font size for medium-small screens */
    }

}


@media (max-width: 576px) {
	.des_text, .unesco-main {
       margin-bottom:5px;
    }
}