#profile_picture_preview {
    display: block;
    margin: 20px 0;
    border: 2px solid #ccc;
    padding: 3px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.button-like-link {
    display: inline-block;
    padding: 10px 15px;
    background-color: #000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    margin-top: -20px;
}

.button-like-link:hover {
    background-color: #333;
}

.profile-picture-upload-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.profile-picture-wrapper {
    position: relative;
    display: inline-block;
    width: 100px;
    height: 100px;
}

.profile-edit-icon-wrapper {
    position: absolute;
    top: 25px;
    left: -5px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.profile-picture-wrapper:hover .profile-edit-icon-wrapper {
    opacity: 1;
}

.profile-edit-icon {
    width: 40px;
    height: 40px;
    fill: #ffffff;
}

.delete-profile-picture {
    position: absolute;
    top: 25px;
    right: -10px;
    background: #f00;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.delete-profile-picture:hover {
    background: #d00;
}

.woocommerce-MyAccount-navigation {
    position: relative;
}

.woocommerce-profile-picture {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 15px;
    margin-bottom: 15px;
}

.woocommerce-profile-picture a {
    text-decoration: none;
    color: inherit;
}

.woocommerce-profile-picture img {
    border-radius: 50%;
    width: 84px !important;
    height: 84px !important;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid #e5e9ed;
}

.woocommerce-profile-name {
    font-weight: bold;
    text-align: center;
}
