.profile-pic-wrapper {
    width: 150px;
    height: 150px;
    overflow: hidden;
    border-radius: 50%;
}

.profile-pic-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-actions {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.profile-pic-wrapper:hover .profile-actions {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.upload-progress {
    width: 100%;
    height: 12px;
    display: block;
    margin-top: 10px;
    accent-color: var(--bs-primary);
}