/*==============setup profile======*/
/* Container jo image aur icon ko hold karega */
.profile-edit {
    position: relative;
    width: 150px; /* Aap size yahan se change kar sakte hain */
    height: 150px;
    margin: 0 auto 20px auto; /* Center alignment aur bottom margin */
}

.profile-image {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Round Profile Image */
.account-profile {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%; /* Circle shape */
    /*border: 4px solid #fff;*/
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Camera Edit Icon ka Circle */
.edit-icon {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background-color: #0d6efd; /* Bootstrap Primary Blue */
    color: white;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 3px solid #fff;
    transition: all 0.3s ease;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

/* Hover effect */
.edit-icon:hover {
    background-color: #0a58ca;
    transform: scale(1.1);
}

/* Icon size */
.edit-icon i {
    font-size: 18px;
}

/*============setup profile=======*/
.cursor-pointer-list {
    cursor: pointer !important;
}

.cursor-pointer-list:hover{
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cursor-pointer-list .active{
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/*=======location=======*/

.change-location{
    height: 50px !important;
    width: 50px;
    position: absolute !important;
    left: 0px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 50% !important;
    border-bottom-left-radius: 0px !important;
    border-top-left-radius: 0px !important;
    z-index: 100;

}