.login-page, .register-page{
    background-image: url(../img/temple.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.user-photo:hover {
    transform: scale(1.05);
    transition: 0.2s ease-in-out;
}

.custom-closebtn{
        position: absolute;
    top: -8px;
    right: 7px;
    border-radius: 50%;
    padding: 3px 8px;
}

#imagePreview{
    margin-top: 20px;
}


/* Business Image Modal */
.business-modal {
    border-radius: 6px;
}

.business-modal .modal-body {
    max-height: 75vh;
    overflow-y: auto;
    background: #f9f9f9;
}

/* Image card */
.business-img-box {
    margin-bottom: 15px;
    text-align: center;
}

.business-img-box img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    border-radius: 4px;
    border: 1px solid #ddd;
    padding: 5px;
    background: #fff;
    cursor: zoom-in;
    transition: transform 0.2s ease;
}

.business-img-box img:hover {
    transform: scale(1.03);
}

/* Mobile optimization */
@media (max-width: 767px) {
    .business-modal .modal-dialog {
        width: 95%;
        margin: 10px auto;
    }

    .business-img-box img {
        max-height: 25vh;
    }

    .list-group-item{display: grid;}
}



.toggle-password{
    position: absolute;
    top: 0;
    right: 21px;
    z-index: 9999999;
    display: block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    
}
