
/* General Containers */
.imgs_container {
    padding-top: 15px;
    padding-bottom: 15px;
}

.parent_sites {
    position: relative;
    text-align: center;
}



.btns_container {
    position: absolute;
    bottom: 1px;
}

.area_img {
    border-color: #808080;
    background-color: #ddd;
}

.area_heading {
    font-size: 50px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.area_t {
    font-size: 14px;
}

.area_p {
    font-size: 18px;
}

.img-thumbnail:hover {
    border-color: #606060;
}

.map_image {
    width: 50%;
    height: auto;
    margin-bottom: -25px !important;
    margin-top: -25px !important;
}

.sites_top_definitions {
    color: #B8B8B8;
    font-size: 32px;
    font-weight: bold;
    text-shadow: -1px 0 #000, 0 2px #000, 1px 0 #000, 0 -1px #000;
}

#sites_parent{border-radius: 5px;}

/* Media Queries */

/* Large screens up to 992px */


/* Medium screens up to 768px */
@media screen and (max-width: 768px) {
    .map_image {
        width: 75%;
        height: auto;
    }

    .sites_top_definitions {
        font-size: 24px;
    }
}

/* Small screens up to 576px */
@media screen and (max-width: 576px) {
    .map_image {
        margin-bottom: auto !important;
        margin-top: auto !important;
    }

    

    .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) {
    .for_generated_map {
        font-size: 8px;
    }

    
    .btns_container .btn {
        width: 21px;
        height: 20px;
        font-size: 6px;
    }

    .area_heading {
        font-size: 20px;
    }

    .area_p {
        font-size: 12px;
    }
}

/* Extremely small screens up to 140px */
@media screen and (max-width: 140px) {
   

    .btns_container .btn {
        width: 16px;
        height: 15px;
        font-size: 3px;
    }
	.for_generated_map {
        display:none;
    }
}


.for_generated_map {
    display: inline-block; /* Makes the button size wrap its content */
    width: auto; /* Prevents it from being too narrow */
    padding: 5px 10px; /* Adds clickable padding */
    cursor: pointer; /* Ensures it appears clickable */
    position: relative; /* Prevents overlap from other elements */
    z-index: 10; /* Ensures it's above other elements */
}


