/* Write your custom CSS here */
.zoom_img:hover {
    transform: scale(3.5); /* (250% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 80px; /* default is 40 */
    right: 15px; /* default is 40 */
    background-color: #042BDBE5;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.my-float {
    margin-top: 16px;
}

.verified-img {
    width: 20px !important;
    height: auto;
    display: inline-block;
    vertical-align: middle;
}

.property-type-img {
    width: 20px !important;
    height: 20px !important;
    display: inline-block;
    vertical-align: middle;
}

.blog-content {
    width: 100%;
    overflow-x: auto; /* allows horizontal scroll if large tables/images */
    word-wrap: break-word;
    line-height: 1.6;
    font-size: 1rem;
}

/* Make images responsive */
.blog-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0.5rem auto;
}

/* Make videos or iframes responsive */
.blog-content iframe,
.blog-content video {
    max-width: 100%;
    height: auto;
}

/* Responsive typography */
@media (max-width: 768px) {
    .blog-content {
        font-size: 0.95rem;
    }
}

.share-buttons div,
.share-buttons a,
.share-buttons li {
    display: inline-block !important;
    margin-right: 8px;
    vertical-align: middle;
}
