.profile-pic-wrapper-2577f47c {
    position: relative;
    display: inline-block;
    overflow: hidden;
    max-width: 100%;
}

.profile-pic-wrapper-2577f47c.is-editable {
    /* cursor: pointer; removed */
}

.profile-pic-img-2577f47c {
    display: block;
    width: 100%;
    height: auto;
    transition: filter 0.3s ease;
}

.profile-pic-overlay-2577f47c {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.profile-pic-wrapper-2577f47c.is-editable:hover .profile-pic-overlay-2577f47c {
    opacity: 1;
}

.profile-pic-wrapper-2577f47c.is-loading .profile-pic-overlay-2577f47c {
    opacity: 0.8;
    pointer-events: none;
}

.profile-pic-actions-2577f47c {
    display: flex;
    gap: 10px;
}

.profile-pic-action-edit-2577f47c,
.profile-pic-action-delete-2577f47c {
    color: #fff;
    font-size: 20px;
    background: rgba(255,255,255,0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

/* Force FontAwesome display to fix empty circles */
.profile-pic-action-edit-2577f47c i,
.profile-pic-action-delete-2577f47c i {
    display: inline-block !important;
    font-family: "Font Awesome 5 Free", "Font Awesome 5 Solid", sans-serif !important;
    font-weight: 900 !important;
}

.profile-pic-action-edit-2577f47c:hover,
.profile-pic-action-delete-2577f47c:hover {
    background: rgba(255,255,255,0.4);
}

.profile-pic-spinner-2577f47c {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    color: #333;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 2;
}