#photo-frame {
    width: 120px;
    height: 120px;
    border: 1px solid var(--second-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fafafa;
    border-radius: 50%;
    overflow: hidden;
    margin: auto;
}

#photo-frame img {
    max-width: 100%;
    max-height: 100%;
    display: none;
    border-radius: 50%;
}

#photo-placeholder {
    color: #888;
    font-size: 14px;
    text-align: center;
    padding: 0.5rem;
}

#photo-remove {
    position: absolute;
    bottom: 0;
    right: 0;
    display: none;
    background-color: black;
}