body {
    background-color: #F2F2F2 !important;
}

/* Reusable Premium Avatar CSS */
.profile-avatar-container {
    position: relative;
    width: 110px;
    height: 110px;
    margin: 0 auto;
}
.profile-avatar-preview {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}
.profile-avatar-upload-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 32px;
    height: 32px;
    background-color: #55c57a; /* Default green */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: all 0.2s ease;
}
.profile-avatar-upload-btn:hover {
    transform: scale(1.1);
    background-color: #3fa163;
}

/* User Form Variant (Blue) */
.profile-avatar-upload-btn.btn-blue {
    background-color: var(--bs-primary) !important;
}
.profile-avatar-upload-btn.btn-blue:hover {
    background-color: #0b5ed7 !important;
}


