/* Admin Profile Image Styles */
.user-card .avatar.has-image {
    background: none;
    border: 2px solid #00A3FF;
    box-shadow: 0 4px 15px rgba(0, 163, 255, 0.2);
}

.profile-image-cell.has-image {
    border: 2px solid #00A3FF;
    box-shadow: 0 4px 15px rgba(0, 163, 255, 0.2);
    background: none;
}

.user-card .avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00A3FF, #0093E9);
    color: white;
    font-weight: 600;
    font-size: 16px;
    margin-right: 15px;
    overflow: hidden;
}

.profile-image-cell {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00A3FF, #0093E9);
}

.profile-image-cell img,
.user-card .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.profile-image-cell i {
    color: white;
    font-size: 16px;
}

/* Ensure consistent image display across all views */
[data-username="Joanne"] .avatar img,
[data-username="ChrisSkippy"] .avatar img,
[data-username="Allison"] .avatar img {
    border-radius: 50%;
    border: none;
}