
    /* Wrapper for image preview */
    #profile-image-container {
        position: relative;
        width: 170px;
        /* Adjust width to match FilePond */
        height: 170px;
        /* Adjust height to match FilePond */
        border-radius: 50%;
        /* Circular image */
        overflow: hidden;
        background: rgba(0, 0, 0, 0.01);
        margin: 0 auto;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        /* Add shadow */
    }

    /* Profile image */
    #profile-image-filepond {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* Cover to maintain aspect ratio */
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        background: #222;
    }

    /* Remove button */
    #remove-profile-image {
        position: absolute;
        top: 130px;
        left: 30px;
        background: rgba(0, 0, 0, 0.5);
        border: none;
        color: #fff;
        border-radius: 50%;
        width: 25px;
        height: 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        cursor: pointer;
        outline: none;
    }

    #remove-profile-image svg {
        width: 16px;
        height: 16px;
    }

    #remove-profile-image:hover {
        background: rgba(0, 0, 0, 0.7);
    }
