.cropper-view-box,
.cropper-face {
    border-radius: 50%;
    outline: solid 2px rgba(192, 255, 0, 0.63);
}

.cropper-point, .cropper-line {
    background-color: rgba(192, 255, 0, 1.0);
}

.cropper-dashed {
    border: 0 dashed rgba(192, 255, 0, 1.0);
}

/* NOTE: This may need to be applied to repImage...but so far I don't see a problem leaving it out */
#image {
    display: block;

    /* This rule is very important, please don't ignore this */
    max-width: 100%;
    background-color: aliceblue;
}

.ui-button {
    align-items: center;
    background-color: #fffffa;
    border: solid 0.5px #1a7fc2;
    border-radius: 8px;
    color: #1a7fc2;
    cursor: pointer;
    display: inline-flex;
    font-size: .875em;
    height: 24px !important;
    margin: 0 0 0 8px;
    padding: 4px;
    width: 24px;
    white-space: nowrap;
}

.ui-button img {
    width: 24px;
    height: 24px;
}

.ui-button:hover {
    background-color: var(--menu-rollover-color);
}

#repImageContainer {
    border-radius: 24px;
    overflow: hidden;
    width: 480px;
    height: 480px;
    margin-top: 20px;
    margin-left: 8px;
    border: 2px solid var(--menu-base-color);
}

#repImageContainer.dragover {
    background-color: var(--menu-rollover-light-color);
    opacity: 0.5;
}

#repImageContainer.dragover > img {
    opacity: 0.5; /* Adjust this value as needed */
}

#repImage {
    display: none;
    max-width: 100%;
}